# File: monster.txt


# This file is used to initialize the "lib/data/monster.raw" file, which is
# used to initialize the "monster race" information for the Angband game.

# Do not modify this file unless you know exactly what you are doing,
# unless you wish to risk possible system crashes and broken savefiles.
# After modifying this file, delete the "lib/data/monster.raw" file.

# Currently, "unique" monsters are just "special" monster races, with
# the requirement that only one monster of that race can exist at a time,
# and when it is killed, it can never again be generated.

# ATTR_CLEAR monsters acquire their attr from the item/floor below them,
# and use "white" for the recall window.  See "cave.c" for info.

# ATTR_MULTI monsters have a "flickering" attr, and use "violet" for the
# recall window.  See "cave.c" for info.

# CHAR_CLEAR monsters use special symbols (.) as given below,
# and use those symbols for the recall window.  In theory, normally,
# these monsters cannot be targetted, and when examined look like normal
# floors, until the player "notices" them (perhaps check "awake").

# CHAR_MULTI monsters use special symbols (!, ?, =) as given below,
# and use those symbols for the recall window.  In theory, normally,
# these monsters cannot be targetted, and when examined look like normal
# objects, until the player "notices" them (perhaps check "awake").

# Note that there are (a few) normal monsters who are "violet" but not
# ATTR_MULTI, and a lot of monsters which are "white" but not ATTR_CLEAR.

# Note that currently both CHAR_CLEAR and CHAR_MULTI monsters are treated
# as normal monsters that are just a little hard to see.

# Note that the monster list underwent several changes for Angband 2.7.9,
# including some monster name changes, some symbol redistributions, and
# some color changes.

# The Umber Hulk joined the Xorn/Xaren (X).  The ticks (t) joined the
# spiders (S).  The townspeople (t) left the people (p).  The "Jabberwock"
# became the "Chaos beetle" (K).  The major demons (&) became (U) and the
# minor demons (I) became (u).  Multiplying insects (fleas, fruit flies,
# hummerhorns) became (I), visually "matching" the multiplying lice (l).
# The "ant lions" (a) became "ants" (a).  The mummified monsters (M)
# joined the zombified monsters (z).  The multi-headed hydras (M) left
# the reptiles (R).  The snakes (J) left the reptiles (R).

# Some of the old "red" or "brown" monsters became "pink" if they lower
# strength, while some of the old "fire" monsters became simply "red"
# monsters.  The "dragons" and "hounds" and related monsters underwent
# a "color scheme regularization" ('w' = White/Cold, 's' = Black/Acid,
# 'o' = Lite/Dark, 'r' = Red/Fire, 'g' = Green/Poison, 'b' = Blue/Elec,
# 'u' = Brown/Earth/Force, 'D' = Dark/etc, 'W' = Stone/Inertia/Gravity/etc,
# 'v' = Multihued/Chaos/Disenchantment/etc, 'y' = Gold/Sound, 'R' = Nexus,
# 'G' = Nether, 'B' = Left-overs, and 'U' = Bronze/Confusion).

# In several situations, two or more monsters with identical symbols and
# colors were changed so that maximal information is conveyed by the symbol
# and color.

# The "people" (p), with more than 50 entries, got a new "color scheme"
# ('w' = Paladin, 's' = Knight, 'o' = Mystic, 'r' = Mage, 'g' = High Priest,
# 'b' = Thief, 'u' = Warrior, 'D' = Death knight, 'W' = Ranger/Archer,
# 'v' = Sorcerer, 'y' = Ninja, 'R' = High Mage, 'G' = Priest, 'B' = High
# Thief, 'U' = High Warrior).  Note that most non-unique "people" already
# had these colors, or colors close to these colors.  A similar color scheme
# was enforced for the "humanoid" (h) monsters as well, more or less.

# Many of the "unique" monsters were changed to "match" the "base" monster
# from which they were derived.  Angband 2.8.0 may require every "unique"
# monster to be based on a "normal" monster, and may enforce color matching.
# This may result in the addition of some new monsters, to serve as "base"
# monsters, possibly including Ogre captains, Greater Balrogs, Black Trolls,
# Vampire Queens, Giant Werewolfs, and others.  This may be accompanied by
# a separation of the monster list into a "normal" monster list (r_info)
# with 512 entries, and a "unique" monster list (u_info) with 128 entries,
# which will require reorganization of the list.  Some new "player ghost"
# unique monsters will probably be added at the same time.

# Mushrooms look just like food (and use the "," symbol for both the recall
# window and for normal display), Creeping coins look just like coins (and
# use the "$" symbol for both the recall window and for normal display), and
# Trappers/Lurkers can never be seen (and use the "." symbol for the recall
# window).  All other monsters use "alphabetic" symbols, and "alphabetic"
# symbols are used only for monsters.

# The "0" and "9" symbols are reserved for internal debugging use.

# The "&" symbol is reserved for future use as a special "terrain feature".

# The "`" symbol is reserved as an "alternate" open door picture, since
# the "'" symbol looks like the "," symbol in some fonts (esp. IBM).

# The "x" symbol is free for use as an "attr/char mapping" for annoying
# monsters, such as magic mushrooms, drolems, etc.

# Certain symbols ("X", "Y", "B", "l", "I", etc) are used by
# very few monsters, and could be reorganized somewhat.

# There are still too many "p" monsters, perhaps they should be broken up.

# As always, you can enforce any "visual picture" you want with a "pref file".

# Note that monster zero contains the "player" picture.


# === Understanding monster.txt ===

# N: serial number : monster name
# G: symbol : color
# I: speed : hit points : vision : armor class : alertness
# W: depth : rarity : unused (always 0) : experience for kill
# B: attack method : attack effect : damage
# S: spell frequency |
# S: spell type | spell type | etc
# F: flag | flag | etc
# D: Description

# 'N' indicates the beginning of an entry. The serial number must
# increase for each new item. Entry 0 is used for the player.

# 'G' is for graphics - symbol and color. There are 16 colors, as
# follows:

# D - Dark Gray    w - White          s - Gray          o - Orange
# r - Red          g - Green          b - Blue          u - Brown
# d - Black        W - Light Gray     v - Violet        y - Yellow
# R - Light Red    G - Light Green    B - Light Blue    U - Light Brown

# 'I' is for information - speed, health, vision in tens of feet,
# armor class, and alertness. 110 is normal speed. Alertness ranges
# from 0 (ever vigilant for intruders) to 255 (prefers to ignore
# intruders).

# 'W' is for more information - level, rarity, and experience for
# killing. The third slot is unused.

# 'B' is for blows - method of attack, effect of attack, and damage
# from attack. There may be up to four of these lines; effect and
# damage are optional.

# 'S' is for spells. The first S: line must be S:1_IN_X with X the
# number of monster turns, on average, before the monster will cast
# one of its spells. X must not be zero.

# 'F' is for flags. These are fairly self-explanatory. As many F:
# lines may be used as are needed to specify all the flags and flags
# are separated by the '|' symbol.

# 'D' is for description. As many D: lines may be used as are needed
# to describe the monster. Note that lines may need spaces at their
# ends to prevent words from running together in the monster memory.


# Version stamp (required)

V:0.5.2


##### Non-race (contains the "player" picture) #####

N:0:Player
G:@:w


##### Town monsters #####

N:1:Biker gang member
G:t:D
I:110:1d4:4:1:40
W:0:2:0:0
B:BEG
B:TOUCH:EAT_GOLD
F:MALE | 
F:RAND_25 |  FRIENDS | 
F:TAKE_ITEM | OPEN_DOOR
D:He looks squalid and thoroughly revolting.

N:2:Fluffy cat
G:f:U
I:110:1d2:30:1:10
W:0:3:0:0
B:CLAW:HURT:1d1
F:RAND_25 | 
F:ANIMAL
D:A fluffy little furball with sharp claws and a menacing look.

N:3:Scruffy little dog
G:C:U
I:110:1d3:20:1:5
W:0:3:0:0
B:BITE:HURT:1d1
F:RAND_25 | 
F:ANIMAL
D:A thin flea-ridden mutt, growling as you get close.

N:4:Yumi Saotome
G:t:v
I:100:70d20:40:10:3
W:0:6:0:0
B:MOAN:CONFUSE
B:PUNCH:HURT:1d1
B:MOAN:TERRIFY
F:UNIQUE | FEMALE | 
F:FORCE_MAXHP | ALWAYS_HIT |
F:ONLY_ITEM | DROP_GREAT | 
F:OPEN_DOOR | BASH_DOOR | 
F:NO_CONF | NO_SLEEP
D:More noisy than cheerful, she sometimes tends to be little selfish. 
D:A naive girl who loves amusement parks and zoos. Beware of this
D:walking nihilist of death!

N:5:Blabbering Otaku
G:t:W
I:110:1d2:6:1:0
W:0:1:0:0
B:DROOL
F:MALE | 
F:RAND_25 | 
F:TAKE_ITEM
D:The bane of all anime conventions...bald, fat, and ugly.

N:6:Boil-covered wretch
G:t:g
I:110:1d2:6:1:0
W:0:1:0:0
B:DROOL
F:MALE | 
F:RAND_25 | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
D:Ugly doesn't begin to describe him.

N:7:Village idiot
G:t:G
I:120:4d4:6:1:0
W:0:1:0:0
B:DROOL
F:MALE | 
F:RAND_25 | 
F:TAKE_ITEM
D:Drooling and comical, but then, what do you expect?

N:8:Pitiful looking beggar
G:t:U
I:110:1d4:10:1:40
W:0:1:0:0
B:BEG
F:MALE | 
F:RAND_25 | 
F:TAKE_ITEM | OPEN_DOOR
D:You just can't help feeling sorry for him.

N:9:Mangy looking leper
G:t:u
I:110:1d1:10:1:50
W:0:1:0:0
B:BEG
F:MALE | 
F:RAND_25 | 
F:TAKE_ITEM | OPEN_DOOR
D:You feel it isn't safe to touch him.

N:10:Squint eyed rogue
G:t:b
I:110:2d8:10:8:99
W:0:1:0:0
B:HIT:HURT:1d6
B:TOUCH:EAT_ITEM
F:MALE | 
F:DROP_60 | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | 
F:EVIL
D:A hardy, street-wise crook that knows an easy catch when it sees one.

N:11:Singing, happy drunk
G:t:y
I:110:2d3:10:1:0
W:0:1:0:0
B:BEG
F:MALE | 
F:RAND_50 | 
F:ONLY_GOLD | DROP_60 | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
D:He makes you glad to be sober.

N:12:Aimless looking merchant
G:t:o
I:110:3d3:10:1:255
W:0:1:0:0
B:HIT:HURT:1d3
F:MALE | 
F:RAND_50 | 
F:ONLY_GOLD | DROP_60 | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
D:The typical ponce around town, with purse jingling, and looking for more 
D:amulets of adornment to buy.

N:13:Yakuza member
G:t:r
I:110:5d8:10:20:250
W:0:1:0:0
B:HIT:HURT:1d10
F:MALE | 
F:RAND_50 | DROP_90 | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | 
F:EVIL
D:No job is too low for him.

N:14:Battle scarred ronin
G:t:B
I:110:7d8:10:30:250
W:0:1:0:0
B:HIT:HURT:2d6
F:MALE | 
F:RAND_50 | DROP_90 | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
D:He doesn't take to strangers kindly.


##### Normal monsters #####

N:15:Grey mold
G:m:s
I:110:1d2:2:1:0
W:1:1:0:3
B:HIT:HURT:1d4
B:HIT:HURT:1d4
F:NEVER_MOVE | 
F:STUPID | EMPTY_MIND | 
F:IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:A small strange growth.

N:16:Grey mushroom patch
G:,:s
I:110:1d2:2:1:0
W:1:1:0:1
B:SPORE:CONFUSE:1d4
F:NEVER_MOVE | 
F:STUPID | EMPTY_MIND | 
F:IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:Yum!  It looks quite tasty.

N:17:Giant yellow centipede
G:c:y
I:110:2d6:8:12:30
W:1:1:0:2
B:BITE:HURT:1d3
B:STING:HURT:1d3
F:WEIRD_MIND | 
F:ANIMAL
D:It is about four feet long and carnivorous.

N:18:Giant white centipede
G:c:w
I:110:3d5:7:10:40
W:1:1:0:2
B:BITE:HURT:1d2
B:STING:HURT:1d2
F:RAND_50 | 
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL
D:It is about four feet long and carnivorous.

N:19:White icky thing
G:i:w
I:110:3d5:12:7:10
W:1:1:0:2
B:TOUCH:HURT:1d2
F:RAND_50 | RAND_25 | 
F:EMPTY_MIND
D:It is a smallish, slimy, icky creature.

N:20:Clear icky thing
G:i:w
I:110:2d5:12:6:10
W:1:1:0:1
B:TOUCH:HURT:1d2
F:ATTR_CLEAR | 
F:RAND_50 | RAND_25 | 
F:INVISIBLE | EMPTY_MIND
D:It is a smallish, slimy, icky, blobby creature.

N:21:Giant white mouse
G:r:w
I:110:1d3:8:4:20
W:1:1:0:1
B:BITE:HURT:1d2
F:RAND_50 | 
F:MULTIPLY | 
F:ANIMAL
D:It is about three feet long with large teeth.

N:22:Large brown snake
G:J:u
I:100:4d6:4:35:99
W:1:1:0:3
B:BITE:HURT:1d3
B:CRUSH:HURT:1d4
F:RAND_25 | 
F:BASH_DOOR | 
F:ANIMAL
D:It is about eight feet long.

N:23:Large white snake
G:J:w
I:100:3d6:4:30:99
W:1:1:0:2
B:BITE:HURT:1d1
B:CRUSH:HURT:1d1
F:RAND_50 | 
F:BASH_DOOR | 
F:ANIMAL
D:It is about eight feet long.

N:24:Small kobold
G:k:y
I:110:2d7:20:16:10
W:1:1:0:5
B:HIT:HURT:1d5
F:DROP_60 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | IM_POIS
D:It is a squat and ugly humanoid figure.

N:25:Kobold
G:k:G
I:110:3d7:20:16:10
W:1:1:0:5
B:HIT:HURT:1d6
F:DROP_60 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | IM_POIS
D:It is a small, dog-headed humanoid.

N:26:White worm mass
G:w:w
I:100:4d4:7:1:10
W:1:1:0:2
B:CRAWL:POISON:1d2
F:RAND_50 | RAND_25 | 
F:STUPID | WEIRD_MIND | MULTIPLY | 
F:ANIMAL | IM_POIS | HURT_LITE | NO_FEAR
D:It is a large slimy mass of worms.

N:27:Floating eye
G:e:o
I:110:3d6:2:6:10
W:1:1:0:1
B:GAZE:PARALYZE
F:NEVER_MOVE | 
F:HURT_LITE | NO_FEAR
D:A disembodied eye, floating a few feet above the ground.

N:28:Rock lizard
G:R:U
I:110:3d4:20:4:15
W:1:1:0:2
B:BITE:HURT:1d1
F:ANIMAL
D:It is a small lizard with a hardened hide.

N:29:Jackal
G:C:U
I:110:1d4:10:3:10
W:1:1:0:1
B:BITE:HURT:1d1
F:FRIENDS | 
F:ANIMAL
D:It is a yapping snarling dog, dangerous when in a pack.

N:30:Soldier ant
G:a:W
I:110:2d5:10:3:10
W:1:1:0:3
B:BITE:HURT:1d2
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL
D:A large ant with powerful mandibles.

N:31:Fruit bat
G:b:o
I:120:1d6:20:3:10
W:1:1:0:1
B:BITE:HURT:1d1
F:ANIMAL
D:A fast-moving pest.

N:32:Shrieker mushroom patch
G:,:R
I:110:1d1:4:1:0
W:2:1:0:1
F:FORCE_SLEEP | NEVER_MOVE | NEVER_BLOW | 
F:STUPID | EMPTY_MIND | 
F:IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_4 | 
S:SHRIEK
D:Yum!  These look quite tasty.

N:33:Blubbering icky thing
G:i:W
I:110:5d6:14:4:10
W:2:1:0:8
B:CRAWL:POISON:1d4
B:CRAWL:EAT_FOOD
F:RAND_50 | DROP_90 | 
F:EMPTY_MIND | TAKE_ITEM | KILL_BODY | 
F:IM_POIS
D:It is a smallish, slimy, icky, hungry creature.

N:34:Metallic green centipede
G:c:g
I:120:4d4:5:4:10
W:2:1:0:3
B:CRAWL:HURT:1d1
F:RAND_50 | 
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL
D:It is about four feet long and carnivorous.

N:35:Platypus
G:B:u
I:110:9d4:20:16:5
W:2:1:0:6
B:HIT:HURT:1d7
B:HIT:POISON:1d6
F:IM_POIS
F:ANIMAL
D:Shy and goofy looking, it makes a mockery of evolutionists everywhere.


N:36:Nohoho
G:R:g
I:130:8d4:20:12:5
W:2:1:0:6
B:HIT:HURT:1d6
B:TOUCH:EAT_GOLD
F:MALE | 
F:ONLY_GOLD | DROP_2D2 | DROP_4D2 | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | 
D:A frog that carries a huge purse around.

N:37:Sukiya
G:s:w
I:110:7d4:20:10:10
W:2:1:0:7
B:KICK:HURT:1d5
F:MALE | 
F:DROP_60 |
F:FORCE_SLEEP | 
F:OPEN_DOOR | BASH_DOOR
D:A disembodied foot.

N:38:Panotty
G:p:r
I:110:6d4:20:6:5
W:2:1:0:7
B:HIT:HURT:1d4
F:MALE | 
F:FORCE_SLEEP | 
F:DROP_60 | 
F:OPEN_DOOR | BASH_DOOR
S:1_IN_12 | 
S:BLINK | BLIND | CONF | MISSILE
D:An annoying little boy with a very annoying flute.

N:39:Yellow mushroom patch
G:,:y
I:110:1d1:2:1:0
W:2:1:0:2
B:SPORE:TERRIFY:1d6
F:NEVER_MOVE | 
F:STUPID | EMPTY_MIND | 
F:IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:Yum!  It looks quite tasty.

N:40:White jelly
G:j:w
I:120:8d8:2:1:99
W:2:1:0:10
B:TOUCH:POISON:1d2
F:NEVER_MOVE | 
F:STUPID | EMPTY_MIND | 
F:IM_POIS | HURT_LITE | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:Its a large pile of white flesh.

N:41:Giant green frog
G:R:g
I:110:2d8:12:8:30
W:2:1:0:6
B:BITE:HURT:1d3
F:RAND_25 | 
F:BASH_DOOR | 
F:ANIMAL
D:It is as big as a wolf.

N:42:Giant black ant
G:a:D
I:110:3d6:8:20:80
W:2:1:0:8
B:BITE:HURT:1d4
F:RAND_25 | 
F:WEIRD_MIND | 
F:BASH_DOOR | 
F:ANIMAL
D:It is about three feet long.

N:43:Salamander
G:R:o
I:110:4d6:8:20:80
W:2:1:0:10
B:BITE:FIRE:1d3
F:RAND_25 | 
F:ANIMAL | IM_FIRE
D:A small black and orange lizard.

N:44:White harpy
G:H:w
I:110:2d5:16:17:10
W:2:1:0:5
B:CLAW:HURT:1d1
B:CLAW:HURT:1d1
B:BITE:HURT:1d2
F:FEMALE | 
F:RAND_50 | 
F:ANIMAL | EVIL
D:A flying, screeching bird with a woman's face.

N:45:Blue yeek
G:y:b
I:110:2d6:18:14:10
W:2:1:0:4
B:HIT:HURT:1d5
F:DROP_60 | 
F:OPEN_DOOR | BASH_DOOR | 
F:ANIMAL
D:A small humanoid figure.

N:46:Pero Pero
G:C:U
I:120:5d5:30:30:0
W:2:1:0:30
B:BITE:HURT:1d4
F:UNIQUE | 
F:FORCE_MAXHP | RAND_25 | 
F:BASH_DOOR | 
F:ANIMAL | NO_CONF | NO_SLEEP
D:Miyazawa Yukino's cute, cuddly, and fluffy dog.  It is very confused,
D:and it wants to eat you.

N:47:Linus the Cat
G:f:d
I:120:5d5:30:30:0
W:2:1:0:30
B:BITE:HURT:1d4
B:CLAW:HURT:1d4
F:UNIQUE | 
F:FORCE_MAXHP | RAND_25 | 
F:BASH_DOOR | 
F:ANIMAL | NO_CONF | NO_SLEEP
D:A funky looking cat that appears out of nowhere and demands your attention.

N:48:Green worm mass
G:w:g
I:100:6d4:7:3:10
W:2:1:0:3
B:CRAWL:ACID:1d3
F:RAND_50 | RAND_25 | 
F:STUPID | WEIRD_MIND | MULTIPLY | 
F:ANIMAL | IM_ACID | 
F:HURT_LITE | NO_FEAR
D:It is a large slimy mass of worms.

N:49:Large yellow snake
G:J:y
I:100:4d8:5:38:75
W:2:1:0:9
B:BITE:HURT:1d4
B:CRUSH:HURT:1d6
F:RAND_25 | 
F:BASH_DOOR | 
F:ANIMAL
D:It is about ten feet long.

N:50:Cave spider
G:S:D
I:120:2d6:8:16:80
W:2:1:0:7
B:BITE:HURT:1d4
F:FRIENDS | 
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL
D:It is a black spider that moves in fits and starts.

N:51:Hello Kitty
G:f:w
I:120:3d5:40:12:0
W:2:2:0:8
B:CLAW:HURT:1d3
F:BASH_DOOR | FRIENDS |
F:ANIMAL
D:Hello Kitty symbolizes generosity, innocence, kindness and most importantly... 
D:friendship.  You look at her with the same feelings for Barney the Purple 
D:Dinosaur or lutefisk.


N:52:Pondrewanon
G:j:b
I:130:5d5:20:12:5
W:3:2:0:16
B:DROOL
B:DROOL
B:TOUCH:EAT_GOLD
F:UNIQUE | MALE | 
F:FORCE_MAXHP | 
F:RAND_50 | RAND_25 | 
F:ONLY_GOLD | DROP_60 | DROP_1D2 | 
F:INVISIBLE | TAKE_ITEM | OPEN_DOOR | BASH_DOOR | 
F:EVIL
D:A weird looking, depraved creature with the desire to ruin other people's 
D:lives.

N:53:Green Puyo
G:j:g
I:120:3d4:8:16:80
W:3:2:0:4
B:CRAWL:ACID:1d3
F:RAND_50 | RAND_25 | DROP_90 | 
F:STUPID | EMPTY_MIND | 
F:IM_ACID | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:An apathetic Puyo that wanders about.

N:54:Poltergeist
G:G:W
I:130:2d5:8:15:10
W:3:1:0:8
B:TOUCH:TERRIFY
F:RAND_50 | RAND_25 | 
F:DROP_60 | DROP_90 | 
F:INVISIBLE | COLD_BLOOD | PASS_WALL | TAKE_ITEM | 
F:EVIL | UNDEAD | 
F:IM_COLD | IM_POIS | HURT_LITE | NO_CONF | NO_SLEEP
S:1_IN_15 | 
S:BLINK
D:It is a ghastly, ghostly form.

N:55:Metallic blue centipede
G:c:b
I:120:4d5:6:6:15
W:3:1:0:7
B:CRAWL:HURT:1d2
F:RAND_50 | 
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL
D:It is about four feet long and carnivorous.

N:56:Bagurom
G:I:v
I:120:1d1:6:5:10
W:3:1:0:1
B:BITE:HURT:1d1
F:RAND_50 | RAND_25 | 
F:MULTIPLY | WEIRD_MIND | 
F:ANIMAL
D:Insect like creatures that just don't like you.

N:57:Black naga
G:n:D
I:110:6d8:16:40:120
W:3:1:0:20
B:CRUSH:HURT:1d8
F:FEMALE | 
F:RAND_25 | DROP_60 | 
F:BASH_DOOR | 
F:EVIL
D:A large black serpent's body with a female torso.

N:58:Spotted mushroom patch
G:,:o
I:110:1d1:2:1:0
W:3:1:0:3
B:SPORE:POISON:2d4
F:NEVER_MOVE | 
F:STUPID | EMPTY_MIND | 
F:IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:Yum!  It looks quite tasty.

N:59:Silver jelly
G:j:W
I:120:10d8:2:1:99
W:3:2:0:12
B:TOUCH:EAT_LITE:1d3
B:TOUCH:EAT_LITE:1d3
F:NEVER_MOVE | 
F:STUPID | EMPTY_MIND | 
F:IM_POIS | HURT_LITE | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_15 | 
S:DRAIN_MANA
D:It is a large pile of silver flesh that sucks all light from its 
D:surroundings.

N:60:Yellow jelly
G:j:y
I:120:10d8:2:1:99
W:3:1:0:12
B:TOUCH:POISON:1d3
F:NEVER_MOVE | 
F:STUPID | EMPTY_MIND | 
F:IM_POIS | HURT_LITE | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_15 | 
S:DRAIN_MANA
D:It's a large pile of yellow flesh.

N:61:Oyaji
G:p:U
I:110:3d5:16:8:10
W:3:1:0:4
B:HIT:HURT:1d4
B:TOUCH:EAT_GOLD
F:MALE | 
F:DROP_60 | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | 
F:EVIL
D:A lecherous old man.


N:62:Giant white ant
G:a:w
I:110:3d6:8:16:80
W:3:1:0:7
B:BITE:HURT:1d4
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL
D:It is about two feet long and has sharp pincers.

N:63:Yellow mold
G:m:y
I:110:8d8:2:10:99
W:3:1:0:9
B:HIT:HURT:1d4
F:NEVER_MOVE | 
F:STUPID | EMPTY_MIND | 
F:IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:It is a strange growth on the dungeon floor.

N:64:Metallic red centipede
G:c:r
I:120:4d8:8:9:20
W:3:1:0:12
B:CRAWL:HURT:1d2
F:RAND_25 | 
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL
D:It is about four feet long and carnivorous.

N:65:Yellow worm mass
G:w:y
I:100:4d8:7:4:10
W:3:2:0:4
B:CRAWL:LOSE_DEX:1d3
F:RAND_50 | RAND_25 | 
F:STUPID | WEIRD_MIND | MULTIPLY | 
F:ANIMAL | HURT_LITE | NO_FEAR
D:It is a large slimy mass of worms.

N:66:Clear worm mass
G:w:w
I:100:4d4:7:1:10
W:3:2:0:4
B:CRAWL:POISON:1d2
F:ATTR_CLEAR | 
F:RAND_50 | RAND_25 | 
F:STUPID | WEIRD_MIND | INVISIBLE | MULTIPLY | 
F:ANIMAL | 
F:IM_POIS | HURT_LITE | NO_FEAR
D:It is a disgusting mass of poisonous worms.

N:67:Radiation eye
G:e:R
I:110:3d6:2:6:10
W:3:1:0:6
B:GAZE:LOSE_STR:1d6
F:NEVER_MOVE | 
F:HURT_LITE | NO_FEAR
S:1_IN_11 | 
S:DRAIN_MANA
D:A disembodied eye, crackling with energy.

N:68:Cave lizard
G:R:u
I:110:3d6:8:16:80
W:4:1:0:8
B:BITE:HURT:1d5
F:ANIMAL
D:It is an armoured lizard with a powerful bite.

N:69:Kabuki mono
G:p:W
I:110:6d8:20:6:5
W:4:1:0:18
B:HIT:HURT:1d5
B:HIT:HURT:1d5
F:MALE | 
F:FORCE_SLEEP | 
F:DROP_60 | 
F:OPEN_DOOR | BASH_DOOR | 
S:1_IN_9 | 
S:ARROW_2 | MISSILE
D:Once an actor, this man has turned to thuggery.

N:70:Extremely cute cat
G:f:w
I:110:6d8:20:16:5
W:4:1:0:20
B:BITE:HURT:1d7
B:BITE:HURT:1d7
F:FEMALE | 
F:FORCE_SLEEP | 
D:A cute little cat that has extremely sharp teeth.  It wants you to 
D:pet it.

N:71:Blue jelly
G:j:b
I:110:12d8:2:1:99
W:4:1:0:14
B:TOUCH:COLD:1d6
F:NEVER_MOVE | COLD_BLOOD | 
F:STUPID | EMPTY_MIND | 
F:IM_COLD | HURT_LITE | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:It's a large pile of pulsing blue flesh.

N:72:Creeping copper coins
G:$:u
I:100:7d8:3:24:10
W:4:2:0:9
B:HIT:HURT:1d4
B:TOUCH:POISON:2d4
F:ONLY_GOLD | DROP_1D2 | 
F:COLD_BLOOD | BASH_DOOR | 
F:ANIMAL | IM_POIS | 
F:NO_CONF | NO_SLEEP
D:It is a pile of coins.

N:73:Giant white rat
G:r:W
I:110:2d2:8:7:30
W:4:1:0:1
B:BITE:POISON:1d3
F:RAND_25 | 
F:MULTIPLY | 
F:ANIMAL
D:It is a very vicious rodent.

N:74:Blue worm mass
G:w:b
I:100:5d8:7:12:10
W:4:1:0:5
B:CRAWL:COLD:1d4
F:RAND_50 | RAND_25 | 
F:STUPID | WEIRD_MIND | COLD_BLOOD | MULTIPLY | 
F:ANIMAL | IM_COLD | 
F:HURT_LITE | NO_FEAR
D:It is a large slimy mass of worms.

N:75:Large grey snake
G:J:s
I:100:6d8:6:41:50
W:4:1:0:14
B:BITE:HURT:1d5
B:CRUSH:HURT:1d8
F:RAND_25 | 
F:BASH_DOOR | 
F:ANIMAL
D:It is about ten feet long.

N:76:Sasuke Sarugature
G:p:b
I:120:6d10:16:8:10
W:5:3:0:90
B:HIT:HURT:1d6
B:TOUCH:EAT_ITEM
B:TOUCH:EAT_GOLD
F:UNIQUE | MALE
F:FORCE_MAXHP | 
F:ONLY_ITEM | DROP_2D2 | DROP_GOOD | 
F:OPEN_DOOR | BASH_DOOR | 
D:Abused servant of the Kuno family, Sasuke sneaks about doing their bidding.

N:77:Novice pretty magical girl
G:p:r
I:110:6d4:20:6:10
W:5:2:0:7
B:HIT:HURT:1d4
F:FEMALE | 
F:FORCE_SLEEP | 
F:FRIENDS | DROP_60 | 
F:OPEN_DOOR | BASH_DOOR
S:1_IN_12 | 
S:BLINK | BLIND | CONF | MISSILE
D:Your sterreotypical, sailor-suit, magic girl.

N:78:Green naga
G:n:g
I:110:9d8:18:40:120
W:5:1:0:30
B:CRUSH:HURT:1d8
B:SPIT:ACID:2d6
F:FEMALE | 
F:RAND_25 | TAKE_ITEM | DROP_60 | 
F:BASH_DOOR | 
F:EVIL | IM_ACID
D:A large green serpent with a female's torso.  Her green skin glistens with 
D:acid.

N:79:Blue ooze
G:j:b
I:110:3d4:8:16:80
W:5:1:0:7
B:CRAWL:COLD:1d4
F:RAND_50 | RAND_25 | DROP_60 | 
F:STUPID | EMPTY_MIND | 
F:IM_COLD | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:It's blue and it's oozing.

N:80:Green glutton ghost
G:G:g
I:130:3d4:10:20:10
W:5:1:0:15
B:TOUCH:EAT_FOOD:1d1
F:RAND_50 | RAND_25 | 
F:DROP_60 | DROP_90 | 
F:INVISIBLE | COLD_BLOOD | PASS_WALL | 
F:EVIL | UNDEAD | NO_CONF | NO_SLEEP
D:It is a very ugly green ghost with a voracious appetite.

N:81:Green Jelly
G:j:g
I:120:22d8:2:1:99
W:5:1:0:18
B:TOUCH:ACID:1d2
F:NEVER_MOVE | 
F:STUPID | EMPTY_MIND | 
F:IM_ACID | HURT_LITE | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:It is a large pile of pulsing green flesh.

N:82:Large kobold
G:k:b
I:110:13d9:20:32:30
W:5:1:0:25
B:HIT:HURT:1d10
F:DROP_90 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | IM_POIS
D:It a man-sized figure with the all too recognizable face of a kobold.

N:83:Skeleton kobold
G:s:w
I:110:5d8:20:26:40
W:5:1:0:12
B:HIT:HURT:1d6
F:COLD_BLOOD | EMPTY_MIND | OPEN_DOOR | BASH_DOOR | 
F:EVIL | UNDEAD | IM_COLD | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:It is a small animated kobold skeleton.

N:84:Grey icky thing
G:i:s
I:110:4d8:14:12:15
W:5:1:0:10
B:TOUCH:HURT:1d5
F:RAND_50 | 
F:EMPTY_MIND
D:It is a smallish, slimy, icky, nasty creature.

N:85:Disenchanter eye
G:e:v
I:100:7d8:2:10:10
W:5:2:0:20
B:GAZE:UN_BONUS
F:ATTR_MULTI | 
F:NEVER_MOVE | 
F:HURT_LITE | NO_FEAR
S:1_IN_9 | 
S:DRAIN_MANA
D:A disembodied eye, crackling with magic.

N:86:Red worm mass
G:w:r
I:100:5d8:7:12:10
W:5:1:0:6
B:CRAWL:FIRE:1d6
F:RAND_50 | RAND_25 | 
F:STUPID | EMPTY_MIND | MULTIPLY | BASH_DOOR | 
F:ANIMAL | IM_FIRE | 
F:HURT_LITE | NO_FEAR
D:It is a large slimy mass of worms.

N:87:Copperhead snake
G:J:o
I:110:4d6:6:20:1
W:5:1:0:15
B:BITE:POISON:2d4
F:RAND_50 | 
F:BASH_DOOR | 
F:ANIMAL | IM_POIS
D:It has a copper head and sharp venomous fangs.

N:88:Purple mushroom patch
G:,:v
I:110:1d1:2:1:0
W:6:2:0:15
B:SPORE:LOSE_CON:1d2
B:SPORE:LOSE_CON:1d2
B:SPORE:LOSE_CON:1d2
F:NEVER_MOVE | 
F:STUPID | EMPTY_MIND | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:Yum!  It looks quite tasty.

N:89:Novice priest
G:p:g
I:110:7d4:20:10:5
W:6:2:0:7
B:HIT:HURT:1d5
F:MALE | 
F:FORCE_SLEEP | 
F:FRIENDS | DROP_60 | 
F:OPEN_DOOR | BASH_DOOR
S:1_IN_12 | 
S:HEAL | SCARE | CAUSE_1
D:He is tripping over his priestly robes.

N:90:Generic Cat Girl
G:f:v
I:110:9d4:20:16:5
W:6:2:0:6
B:HIT:HURT:1d7
B:CLAW:HURT:1d6
F:FEMALE | 
F:FRIENDS | DROP_60 | 
F:OPEN_DOOR | BASH_DOOR
D:The stereotypical cat girl one finds in any anime series.

N:91:Novice rogue
G:p:b
I:110:8d4:20:12:5
W:6:2:0:6
B:HIT:HURT:1d6
B:TOUCH:EAT_GOLD
F:MALE | 
F:FRIENDS | DROP_60 | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | 
F:EVIL
D:A rather shifty individual.

N:92:Brown mold
G:m:u
I:110:15d8:2:12:99
W:6:1:0:20
B:HIT:CONFUSE:1d4
F:NEVER_MOVE | 
F:STUPID | EMPTY_MIND | 
F:IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:A strange brown growth on the dungeon floor.

N:93:Giant brown bat
G:b:u
I:130:3d8:10:15:30
W:6:1:0:10
B:BITE:HURT:1d3
F:RAND_50 | 
F:ANIMAL
D:It screeches as it attacks.

N:94:Novice archer
G:p:W
I:120:6d8:20:10:5
W:6:2:0:20
B:HIT:HURT:1d4
B:HIT:HURT:1d4
F:MALE | 
F:FORCE_SLEEP | 
F:ONLY_GOLD | DROP_1D2 | 
F:OPEN_DOOR | BASH_DOOR
S:1_IN_3 | 
S:ARROW_1
D:A nasty little fellow with a bow and arrow.

N:95:Creeping silver coins
G:$:s
I:100:12d8:4:30:10
W:6:2:0:18
B:HIT:HURT:1d6
B:TOUCH:POISON:2d6
F:ONLY_GOLD | DROP_60 | DROP_1D2 | 
F:COLD_BLOOD | BASH_DOOR | 
F:ANIMAL | IM_POIS | NO_CONF | NO_SLEEP
D:It is a pile of coins, crawling forward on thousands of tiny legs.

N:96:Snaga
G:o:U
I:110:8d8:20:32:30
W:6:1:0:15
B:HIT:HURT:1d8
F:MALE | 
F:FRIENDS | DROP_60 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | ORC | HURT_LITE
D:He is one of the many weaker 'slave' orcs, often mistakenly known as a 
D:goblin.

N:97:Rattlesnake
G:J:r
I:110:6d7:6:24:1
W:6:1:0:20
B:BITE:POISON:2d5
F:RAND_50 | 
F:BASH_DOOR | 
F:ANIMAL | IM_POIS
D:It is recognized by the hard-scaled end of its body that is often rattled 
D:to frighten its prey.

N:98:Cave orc
G:o:G
I:110:11d9:20:32:30
W:7:1:0:20
B:HIT:HURT:1d8
F:MALE | 
F:FRIENDS | DROP_60 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | ORC | HURT_LITE
D:He is often found in huge numbers in deep caves.

N:99:Wood spider
G:S:U
I:120:3d6:8:16:80
W:7:3:0:15
B:BITE:HURT:1d3
B:STING:POISON:1d4
F:FRIENDS | 
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL | IM_POIS
D:It scuttles towards you.

N:100:Manes
G:u:u
I:110:8d8:20:32:30
W:7:2:0:16
B:HIT:HURT:1d8
F:FRIENDS | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | DEMON | IM_FIRE | NO_FEAR
D:It is a minor but aggressive demon.

N:101:Bloodshot eye
G:e:r
I:110:5d8:2:6:10
W:7:3:0:15
B:GAZE:BLIND:2d6
F:NEVER_MOVE | 
F:HURT_LITE | NO_FEAR
S:1_IN_7 | 
S:DRAIN_MANA
D:A disembodied eye, bloodshot and nasty.

N:102:Pink naga
G:n:R
I:110:11d8:20:40:120
W:7:2:0:40
B:CRUSH:HURT:1d10
B:BITE:LOSE_STR:1d4
F:FEMALE | 
F:RAND_25 | DROP_60 | 
F:TAKE_ITEM | BASH_DOOR | 
F:EVIL
D:A large pink snake with a woman's torso.

N:103:Red Puyo
G:j:r
I:110:26d8:2:1:99
W:7:1:0:26
B:TOUCH:FIRE:1d5
F:RAND_50 | RAND_25 | DROP_90 | 
F:STUPID | EMPTY_MIND | 
F:HURT_LITE | IM_FIRE |
F:NO_CONF | NO_SLEEP | NO_FEAR
D:The angry puyo that frightens explorers.

N:104:Giant pink frog
G:R:R
I:110:5d8:12:16:50
W:7:1:0:16
B:BITE:LOSE_STR:2d4
F:RAND_50 | 
F:BASH_DOOR | 
F:ANIMAL
D:It looks poisonous.

N:105:Green icky thing
G:i:g
I:110:5d8:14:12:20
W:7:2:0:18
B:TOUCH:ACID:2d5
F:RAND_50 | 
F:EMPTY_MIND | 
F:IM_ACID
D:It is a smallish, slimy, icky, acidic creature.

N:106:Zombified kobold
G:z:s
I:110:6d8:20:14:30
W:7:1:0:14
B:HIT:HURT:1d2
B:HIT:HURT:1d2
F:EMPTY_MIND | COLD_BLOOD | OPEN_DOOR | BASH_DOOR | 
F:EVIL | UNDEAD | IM_COLD | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:It is an animated kobold corpse.  Flesh falls off in large chunks as it 
D:shambles forward.

N:107:Lost soul
G:G:B
I:110:2d8:12:10:10
W:7:2:0:18
B:HIT:HURT:2d2
B:TOUCH:LOSE_WIS
F:RAND_50 | DROP_60 | DROP_90 | 
F:INVISIBLE | COLD_BLOOD | TAKE_ITEM | PASS_WALL | 
F:EVIL | UNDEAD | 
F:IM_COLD | NO_CONF | NO_SLEEP
S:1_IN_15 | 
S:TPORT | DRAIN_MANA
D:It is almost insubstantial.

N:108:Dark elf
G:h:D
I:110:7d10:20:16:20
W:7:2:0:25
B:HIT:HURT:1d6
B:HIT:HURT:1d6
F:MALE | 
F:FORCE_SLEEP | 
F:DROP_90 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | HURT_LITE
S:1_IN_10 | 
S:CONF | DARKNESS
D:An elven figure with jet black skin and white hair, his eyes are large and 
D:twisted with evil.

N:109:Night lizard
G:R:D
I:110:4d8:20:16:30
W:7:2:0:35
B:BITE:HURT:1d6
B:BITE:HURT:1d6
F:ANIMAL
D:It is a black lizard with overlapping scales and a powerful jaw.

N:110:Tuxedo Mask
G:p:D
I:110:15d10:20:20:20
W:7:3:0:100
B:HIT:HURT:1d10
B:HIT:HURT:1d10
B:HIT:HURT:1d10
B:INSULT
F:UNIQUE | MALE | 
F:FORCE_MAXHP | 
F:ONLY_ITEM | DROP_1D2 | DROP_GOOD | 
F:OPEN_DOOR | BASH_DOOR | 
S:1_IN_2 |
S:MISSILE
D:Aka Prince Darien, a funny dresser who lieks to throw roses.

N:111:Sailor Moon
G:p:b
I:110:25d10:20:30:20
W:8:1:0:150
B:HIT:HURT:1d5
B:HIT:HURT:1d5
B:TOUCH:EAT_GOLD
B:INSULT
F:UNIQUE | FEMALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_1D2 | DROP_GOOD | DROP_GREAT | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | 
S:1_IN_5 | 
S:HEAL | SLOW | BO_COLD | BA_POIS
D:The epitomy of all bad anime everywhere.  Upon looking at her, you feel
D:a sudden urge to kill.


N:112:Napa, the Sayajin Elite
G:h:o
I:120:20d11:20:32:30
W:8:2:0:80
B:PUNCH:HURT:1d10
B:KICK:HURT:1d10
B:PUNCH:HURT:1d9
B:KICK:HURT:1d9
F:UNIQUE | MALE | 
F:FORCE_MAXHP | 
F:ONLY_ITEM | DROP_1D2 | DROP_GOOD | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | 
S:1_IN_5 | 
S:BO_ELEC | BA_ELEC
D:A Sayajin elite, Napa may look stupid, but is pretty strong.

N:113:Brown yeek
G:y:u
I:110:4d8:18:18:10
W:8:1:0:11
B:HIT:HURT:1d6
F:DROP_60 | 
F:OPEN_DOOR | BASH_DOOR | 
F:ANIMAL
D:It is a strange small humanoid.

N:114:Novice ranger
G:p:W
I:110:6d8:20:6:5
W:8:1:0:18
B:HIT:HURT:1d5
B:HIT:HURT:1d5
F:MALE | 
F:FORCE_SLEEP | FRIENDS | DROP_60 | 
F:OPEN_DOOR | BASH_DOOR
S:1_IN_9 | 
S:ARROW_2 | MISSILE
D:An agile hunter, ready and relaxed.

N:115:Giant salamander
G:R:y
I:110:6d7:6:40:1
W:8:1:0:50
B:BITE:FIRE:3d6
F:FORCE_SLEEP | 
F:RAND_25 | 
F:ANIMAL | IM_FIRE
S:1_IN_9 | 
S:BR_FIRE
D:A large black and yellow lizard.  You'd better run away!

N:116:Green mold
G:m:g
I:110:21d8:2:14:75
W:8:2:0:28
B:HIT:TERRIFY:1d4
F:NEVER_MOVE | 
F:STUPID | EMPTY_MIND | 
F:IM_ACID | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:It is a strange growth on the dungeon floor.

N:117:Skeleton orc
G:s:w
I:110:10d8:20:36:40
W:8:1:0:26
B:HIT:HURT:2d5
F:COLD_BLOOD | EMPTY_MIND | OPEN_DOOR | BASH_DOOR | 
F:EVIL | ORC | UNDEAD | 
F:IM_COLD | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:It is an animated orc skeleton.

N:118:Novice paladin
G:p:w
I:110:6d8:20:16:5
W:8:2:0:20
B:HIT:HURT:1d7
B:HIT:HURT:1d7
F:MALE | 
F:FORCE_SLEEP | 
F:FRIENDS | DROP_60 | 
F:OPEN_DOOR | BASH_DOOR
S:1_IN_9 | 
S:SCARE | CAUSE_1
D:An adventurer both devoutly religious and skillful in combat.

N:119:Lemure
G:u:U
I:110:13d9:20:32:30
W:8:3:0:16
B:HIT:HURT:1d8
F:FRIENDS | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | DEMON | IM_FIRE | NO_FEAR
D:It is the larval form of a major demon.

N:120:Hill orc
G:o:u
I:110:13d9:20:32:30
W:8:1:0:25
B:HIT:HURT:1d10
F:MALE | 
F:FRIENDS | DROP_60 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | ORC
D:He is a hardy well-weathered survivor.

N:121:Bandit
G:p:b
I:110:8d8:20:24:10
W:8:2:0:26
B:HIT:HURT:2d4
B:TOUCH:EAT_GOLD
F:MALE | 
F:DROP_1D2 | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | 
F:EVIL
D:He is after your cash!

N:122:Yuuki-Onna
G:G:b
I:110:11d9:20:24:10
W:9:3:0:30
B:HIT:HURT:1d3
B:HIT:HURT:1d3
B:WAIL:HURT:1d4
F:EVIL | UNDEAD | IM_COLD | PASS_WALL |
S:1_IN_1 |
S:BO_COLD | BA_COLD |
D:A ghost woman who wears a white kimono and freezes lost adventurers.

N:123:Bloodshot icky thing
G:i:r
I:110:7d8:14:18:20
W:9:3:0:24
B:TOUCH:HURT:1d4
B:CRAWL:ACID:2d4
F:RAND_50 | 
F:EMPTY_MIND | 
F:IM_POIS
S:1_IN_11 | 
S:DRAIN_MANA
D:It is a strange, slimy, icky creature.

N:124:Giant grey rat
G:r:s
I:110:2d3:8:12:20
W:9:1:0:2
B:BITE:POISON:1d4
F:RAND_25 | 
F:MULTIPLY | 
F:ANIMAL | IM_POIS
D:It is a rodent of unusual size.

N:125:Black harpy
G:H:D
I:120:3d8:16:22:10
W:9:1:0:19
B:CLAW:HURT:1d2
B:CLAW:HURT:1d2
B:BITE:HURT:1d3
F:FEMALE | 
F:RAND_25 | 
F:ANIMAL | EVIL
D:A woman's face on the body of a vicious black bird.

N:126:Orc shaman
G:o:r
I:110:9d8:20:15:20
W:9:1:0:30
B:HIT:HURT:1d6
B:HIT:HURT:1d6
F:MALE | 
F:FORCE_SLEEP | DROP_90 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | ORC | HURT_LITE
S:1_IN_8 | 
S:BLINK | CAUSE_1 | MISSILE
D:An orc dressed in skins who gestures wildly.

N:127:Baby blue dragon
G:d:b
I:110:10d10:20:30:70
W:9:2:0:35
B:CLAW:HURT:1d3
B:CLAW:HURT:1d3
B:BITE:HURT:1d5
F:FORCE_MAXHP | FORCE_SLEEP | 
F:ONLY_GOLD | DROP_60 | DROP_1D2 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | DRAGON | IM_ELEC
S:1_IN_11 | 
S:BR_ELEC
D:This hatchling dragon is still soft, its eyes unaccustomed to light and 
D:its scales a pale blue.

N:128:Baby white dragon
G:d:w
I:110:10d10:20:30:70
W:9:2:0:35
B:CLAW:HURT:1d3
B:CLAW:HURT:1d3
B:BITE:HURT:1d5
F:FORCE_MAXHP | FORCE_SLEEP | 
F:ONLY_GOLD | DROP_60 | DROP_1D2 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | DRAGON | IM_COLD
S:1_IN_11 | 
S:BR_COLD
D:This hatchling dragon is still soft, its eyes unaccustomed to light and 
D:its scales a pale white.

N:129:Baby green dragon
G:d:g
I:110:10d10:20:30:70
W:9:2:0:35
B:CLAW:HURT:1d3
B:CLAW:HURT:1d3
B:BITE:HURT:1d5
F:FORCE_MAXHP | FORCE_SLEEP | 
F:ONLY_GOLD | DROP_60 | DROP_1D2 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | DRAGON | IM_POIS
S:1_IN_11 | 
S:BR_POIS
D:This hatchling dragon is still soft, its eyes unaccustomed to light and 
D:its scales a sickly green.

N:130:Baby black dragon
G:d:s
I:110:10d10:20:30:70
W:9:2:0:35
B:CLAW:HURT:1d3
B:CLAW:HURT:1d3
B:BITE:HURT:1d5
F:FORCE_MAXHP | FORCE_SLEEP | 
F:ONLY_GOLD | DROP_60 | DROP_1D2 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | DRAGON | IM_ACID
S:1_IN_11 | 
S:BR_ACID
D:This hatchling dragon is still soft, its eyes unaccustomed to light and 
D:its scales a dull black.

N:131:Charmander
G:d:r
I:110:11d10:20:30:70
W:9:2:0:35
B:CLAW:HURT:1d3
B:CLAW:HURT:1d3
B:BITE:HURT:1d5
F:FORCE_MAXHP | FORCE_SLEEP | 
F:ONLY_GOLD | DROP_60 | DROP_1D2 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | DRAGON | IM_FIRE
S:1_IN_4 | 
S:BR_FIRE
D:Fire type pokemon.  The flame at the tip of its tail makes a sound as it
D:burns.  You can only hear it at quiet places.

N:132:Giant pink ant
G:a:R
I:110:4d8:12:34:60
W:9:2:0:22
B:BITE:HURT:1d4
B:STING:LOSE_STR:1d4
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL
D:It is large and has venomous mandibles.

N:133:Tatewaki Kuno
G:p:u
I:110:21d10:20:25:20
W:9:2:0:100
B:HIT:HURT:1d12
B:HIT:HURT:1d12
B:HIT:HURT:1d12
B:INSULT
F:UNIQUE | MALE
F:FORCE_MAXHP | 
F:ONLY_ITEM | DROP_1D2 | DROP_GOOD | 
F:OPEN_DOOR | BASH_DOOR
D:He's the 'Blue Thunder' of Furinkan High school and the rising star of the 
D:high school fencing world.  

N:134:King cobra
G:J:g
I:110:8d10:8:30:1
W:9:2:0:28
B:SPIT:BLIND:1d2
B:BITE:POISON:3d4
F:RAND_50 | 
F:BASH_DOOR | 
F:ANIMAL | IM_POIS
D:It is a large snake with a hooded face.

N:135:Giant spider
G:S:v
I:110:10d10:8:16:80
W:10:2:0:35
B:BITE:HURT:1d10
B:BITE:POISON:1d6
B:BITE:POISON:1d6
B:BITE:HURT:1d10
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL | IM_POIS
D:It is a vast black spider whose bulbous body is bloated with poison.

N:136:Dark elven mage
G:h:v
I:120:7d10:20:16:20
W:10:1:0:50
B:HIT:HURT:1d6
B:HIT:HURT:1d6
F:MALE | 
F:FORCE_SLEEP | 
F:ONLY_ITEM | DROP_1D2 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | IM_POIS | HURT_LITE
S:1_IN_5 | 
S:BLIND | CONF | MISSILE | DARKNESS | BA_POIS
D:A dark elven figure, dressed all in black, hurling spells at you.

N:137:Cait the cat
G:f:b
I:130:12d10:18:20:10
W:10:3:0:80
B:CLAW:HURT:1d9
B:CLAW:HURT:1d8
F:UNIQUE | FEMALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ESCORT | ESCORTS | 
F:ONLY_ITEM | DROP_90 | DROP_GOOD | 
F:SMART | OPEN_DOOR | BASH_DOOR | 
F:ANIMAL | EVIL
S:1_IN_4 | 
S:HEAL | BLINK | TELE_TO | SLOW | CONF | 
S:S_MONSTER
D:A sentient siamese cat that is well versed in electronics and magic.  She 
D:is top tier in devloping strategies, and has a twin sister.

N:138:Samurai Mole
G:r:u
I:110:10d11:20:16:20
W:10:1:0:50
B:HIT:HURT:1d8
B:HIT:HURT:1d8
F:MALE | 
F:DROP_1D2 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | HURT_LITE
D:A short little mole with a little sword and a funny helmet.

N:139:Clear mushroom patch
G:,:w
I:120:1d1:4:1:0
W:10:2:0:3
B:SPORE:HURT:1d1
F:ATTR_CLEAR | 
F:NEVER_MOVE | INVISIBLE | COLD_BLOOD | MULTIPLY | 
F:STUPID | EMPTY_MIND | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:Yum!  It looks quite tasty.

N:140:Sith, the Cat
G:f:b
I:120:23d10:20:20:20
W:10:3:0:160
B:CLAW:HURT:1d12
B:CLAW:HURT:1d10
B:CLAW:HURT:1d12
B:CLAW:HURT:1d10
F:UNIQUE | FEMALE | 
F:FORCE_MAXHP | 
F:ESCORT | ESCORTS |
F:ONLY_ITEM | DROP_1D2 | DROP_GOOD | 
F:SMART | OPEN_DOOR | BASH_DOOR | 
F:ANIMAL | EVIL
S:1_IN_4 | 
S:HEAL | BLINK | TELE_TO | SLOW | CONF | 
S:S_MONSTER
D:The twin sister of Cait, she is renowned for her cunning.

N:141:Giant white tick
G:S:w
I:100:12d8:12:40:20
W:10:2:0:27
B:BITE:POISON:2d6
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL | IM_POIS
D:It is moving slowly towards you.

N:142:Hairy mold
G:m:o
I:110:15d8:2:15:70
W:10:2:0:32
B:HIT:POISON:1d3
F:NEVER_MOVE | 
F:STUPID | EMPTY_MIND | 
F:IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:It is a strange hairy growth on the dungeon floor.

N:143:Disenchanter mold
G:m:v
I:110:16d8:2:20:70
W:10:2:0:40
B:TOUCH:UN_BONUS:1d6
F:NEVER_MOVE | 
F:STUPID | EMPTY_MIND | 
F:IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_11 | 
S:DRAIN_MANA
D:It is a strange glowing growth on the dungeon floor.

N:144:Pseudo dragon
G:d:o
I:110:20d10:20:30:40
W:10:2:0:150
B:CLAW:HURT:1d3
B:CLAW:HURT:1d3
B:BITE:HURT:1d5
F:FORCE_MAXHP | FORCE_SLEEP | 
F:DROP_60 | 
F:BASH_DOOR | 
F:DRAGON
S:1_IN_11 | 
S:CONF | SCARE | 
S:BR_LITE | BR_DARK
D:A small relative of the dragon that inhabits dark caves.

N:145:Tengu
G:u:R
I:120:16d9:20:32:30
W:10:1:0:40
B:HIT:HURT:1d8
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | DEMON | IM_FIRE | NO_FEAR
S:1_IN_3 | 
S:BLINK | TELE_TO
D:It is a fast-moving demon that blinks quickly in and out of existence; no 
D:other demon matches its teleporting mastery.

N:146:Creeping gold coins
G:$:y
I:100:18d8:5:36:10
W:10:3:0:32
B:HIT:HURT:2d5
B:TOUCH:POISON:3d5
F:ONLY_GOLD | DROP_90 | DROP_1D2 | 
F:COLD_BLOOD | BASH_DOOR | 
F:ANIMAL | 
F:IM_POIS | NO_CONF | NO_SLEEP
D:It is a pile of coins, crawling forward on thousands of tiny legs.

N:147:Wolf
G:C:u
I:120:6d6:30:30:20
W:10:1:0:30
B:BITE:HURT:1d6
F:RAND_25 | 
F:FRIENDS | 
F:BASH_DOOR | 
F:ANIMAL
D:It howls and snaps at you.

N:148:Kamitori
G:B:w
I:130:2d2:8:14:10
W:10:6:0:4
B:HIT:HURT:1d2
F:RAND_50 | RAND_25 | 
F:FRIENDS | WEIRD_MIND | 
D:A paper bird.

N:149:Panther
G:f:u
I:120:10d8:40:30:0
W:10:2:0:25
B:CLAW:HURT:1d8
B:CLAW:HURT:1d8
F:BASH_DOOR | 
F:ANIMAL
D:A large black cat, stalking you with intent.  It thinks you're its next 
D:meal.

N:150:Brigand
G:p:b
I:110:9d8:20:32:10
W:10:2:0:35
B:HIT:HURT:2d4
B:TOUCH:EAT_ITEM
F:MALE | 
F:DROP_1D2 | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | 
F:EVIL
D:He is eyeing your backpack.

N:151:Baby multi-hued dragon
G:d:v
I:110:13d10:20:30:70
W:11:2:0:45
B:CLAW:HURT:1d3
B:CLAW:HURT:1d3
B:BITE:HURT:1d5
F:ATTR_MULTI | 
F:FORCE_MAXHP | FORCE_SLEEP | 
F:ONLY_GOLD | DROP_60 | DROP_1D2 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | DRAGON | 
F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
S:1_IN_11 | 
S:BR_ACID | BR_FIRE | BR_COLD | BR_ELEC | BR_POIS
D:This hatchling dragon is still soft, its eyes unaccustomed to light and 
D:its scales shimmering with a hint of colour.

N:152:Hippogriff
G:H:U
I:110:20d9:12:14:10
W:11:1:0:30
B:HIT:HURT:2d5
B:BITE:HURT:2d5
F:BASH_DOOR | 
F:ANIMAL
D:A strange hybrid of eagle, lion and horse.  It looks weird.

N:153:Zombified orc
G:z:s
I:110:11d8:20:24:25
W:11:1:0:30
B:HIT:HURT:1d4
B:HIT:HURT:1d4
B:HIT:HURT:1d4
F:COLD_BLOOD | EMPTY_MIND | OPEN_DOOR | BASH_DOOR | 
F:EVIL | ORC | UNDEAD | 
F:IM_COLD | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:It is a shambling orcish corpse leaving behind a trail of flesh.

N:154:Gnome mage
G:h:r
I:110:7d8:18:20:10
W:11:2:0:38
B:HIT:HURT:1d5
F:MALE | 
F:FORCE_SLEEP | DROP_1D2 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL
S:1_IN_4 | 
S:BLINK | DARKNESS | BO_COLD | 
S:S_MONSTER
D:A mage of short stature.

N:155:Black mamba
G:J:D
I:120:10d8:10:32:1
W:12:3:0:40
B:BITE:POISON:4d4
F:RAND_50 | 
F:BASH_DOOR | 
F:ANIMAL | IM_POIS
D:It has glistening black skin, a sleek body and highly venomous fangs.

N:156:Remodeled puppy
G:C:w
I:120:14d14:30:30:20
W:12:1:0:30
B:BITE:HURT:1d3
B:BITE:HURT:1d4
F:RAND_25 | 
F:BASH_DOOR | 
F:ANIMAL |
D:An alien creature that is disguised as a cute puppy so that it can bait its prey
D:to come towards it.

N:157:Grape jelly
G:j:v
I:110:52d8:2:1:99
W:12:3:0:60
B:TOUCH:EXP_10
F:NEVER_MOVE | 
F:STUPID | EMPTY_MIND | 
F:IM_POIS | HURT_LITE | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_11 | 
S:DRAIN_MANA
D:It is a pulsing mound of glowing flesh.

N:158:Nether worm mass
G:w:D
I:100:5d8:10:15:3
W:12:3:0:6
B:TOUCH:EXP_10
F:RAND_50 | RAND_25 | 
F:STUPID | WEIRD_MIND | MULTIPLY | BASH_DOOR | 
F:ANIMAL | HURT_LITE | NO_FEAR
D:It is a disgusting mass of dark worms, eating each other, the floor, 
D:the air, you....

N:159:Schezo Wegey
G:p:U
I:110:24d10:20:60:20
W:12:3:0:230
B:HIT:HURT:1d12
B:HIT:HURT:1d12
B:HIT:HURT:1d10
B:HIT:HURT:1d10
F:UNIQUE | MALE | 
F:FORCE_MAXHP | 
F:ESCORT | 
F:ONLY_ITEM | DROP_2D2 | DROP_GOOD | 
F:WEIRD_MIND | OPEN_DOOR | BASH_DOOR | 
F:IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
D:A very skilled swordsman...but not very bright, and somewhat of a pervert.

N:160:Master yeek
G:y:U
I:110:12d9:18:24:10
W:12:2:0:28
B:HIT:HURT:1d8
F:FORCE_SLEEP | 
F:DROP_60 | 
F:OPEN_DOOR | BASH_DOOR | 
F:ANIMAL | EVIL
S:1_IN_4 | 
S:BLINK | TPORT | BLIND | SLOW | BA_POIS | 
S:S_MONSTER
D:A small humanoid that radiates some power.

N:161:Priest
G:p:g
I:110:12d8:20:22:40
W:12:1:0:36
B:HIT:HURT:2d3
B:HIT:HURT:2d3
F:MALE | 
F:FORCE_SLEEP | 
F:DROP_1D2 | 
F:SMART | OPEN_DOOR | BASH_DOOR | 
F:EVIL
S:1_IN_3 | 
S:HEAL | SCARE | CAUSE_2 | 
S:S_MONSTER
D:A robed humanoid dedicated to his god.

N:162:Dark elven priest
G:h:g
I:120:7d10:20:30:30
W:12:1:0:50
B:HIT:HURT:1d9
B:HIT:HURT:1d10
F:MALE | 
F:FORCE_SLEEP | 
F:ONLY_ITEM | DROP_1D2 | 
F:SMART | OPEN_DOOR | BASH_DOOR | 
F:EVIL | HURT_LITE
S:1_IN_5 | 
S:HEAL | BLIND | CONF | CAUSE_2 | DARKNESS
D:A dark elven figure, dressed all in black, chanting curses and waiting to 
D:deliver your soul to hell.

N:163:Air spirit
G:E:B
I:130:8d8:12:40:20
W:12:2:0:40
B:HIT:HURT:1d3
F:RAND_50 | RAND_25 | 
F:EMPTY_MIND | INVISIBLE | COLD_BLOOD | BASH_DOOR | 
F:EVIL | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:A whirlwind of sentient air.

N:164:Skeleton human
G:s:w
I:110:10d8:20:30:30
W:12:1:0:38
B:HIT:HURT:1d8
F:EMPTY_MIND | COLD_BLOOD | OPEN_DOOR | BASH_DOOR | 
F:EVIL | UNDEAD | IM_COLD | 
F:IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:It is an animated human skeleton.

N:165:Zombified human
G:z:s
I:110:12d8:20:24:20
W:12:1:0:34
B:HIT:HURT:1d4
B:HIT:HURT:1d4
F:EMPTY_MIND | COLD_BLOOD | OPEN_DOOR | BASH_DOOR | 
F:EVIL | UNDEAD | IM_COLD | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:It is a shambling human corpse dropping chunks of flesh behind it.

N:166:Tiger
G:f:o
I:120:12d10:40:40:0
W:12:2:0:40
B:CLAW:HURT:1d8
B:CLAW:HURT:1d8
B:BITE:HURT:1d6
F:BASH_DOOR | 
F:ANIMAL
D:One of the largest of its species, a sleek orange and black shape creeps 
D:towards you, ready to pounce.

N:167:Moaning spirit
G:G:u
I:120:5d8:14:20:10
W:12:2:0:44
B:WAIL:TERRIFY
B:TOUCH:LOSE_DEX:1d8
F:FORCE_SLEEP | RAND_25 | 
F:DROP_60 | DROP_90 | 
F:INVISIBLE | COLD_BLOOD | PASS_WALL | 
F:EVIL | UNDEAD | IM_COLD | NO_CONF | NO_SLEEP
S:1_IN_15 | 
S:TPORT | SCARE
D:A ghostly apparition that shrieks horribly.

N:168:Samurai
G:p:U
I:110:12d8:20:34:20
W:12:1:0:40
B:HIT:HURT:3d5
B:HIT:HURT:3d5
F:MALE | 
F:DROP_1D2 | 
F:OPEN_DOOR | BASH_DOOR
D:A warrior of considerable skill.

N:169:Stegocentipede
G:c:u
I:120:13d8:12:30:30
W:12:2:0:40
B:BITE:HURT:2d4
B:BITE:HURT:2d4
B:STING:HURT:2d4
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL
D:It is a vast armoured centipede with massive mandibles and a spiked tail.

N:170:Spotted jelly
G:j:o
I:120:13d8:12:18:1
W:12:3:0:33
B:TOUCH:ACID:1d10
B:TOUCH:ACID:2d6
B:TOUCH:ACID:2d6
F:NEVER_MOVE | 
F:STUPID | EMPTY_MIND | COLD_BLOOD | 
F:IM_ACID | IM_POIS | HURT_LITE | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:A jelly thing.

N:171:Mamono
G:B:u
I:110:10d13:8:30:80
W:13:2:0:55
B:HIT:HURT:1d12
B:HIT:HURT:1d12
F:FORCE_SLEEP | 
F:BASH_DOOR | 
F:IM_POIS
S:1_IN_8 | 
S:CONF | CAUSE_1 | DARKNESS
D:A strange sorcerer bird like creature.

N:172:Killer brown beetle
G:K:u
I:110:13d8:10:40:30
W:13:2:0:38
B:BITE:HURT:3d4
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL
D:It is a vicious insect with a tough carapace.

N:173:Arle Nadja
G:p:b
I:120:18d10:18:24:10
W:13:3:0:200
B:HIT:HURT:1d9
B:HIT:HURT:1d9
B:HIT:HURT:1d8
F:UNIQUE | FEMALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_90 | DROP_1D2 | DROP_GOOD | 
F:SMART | OPEN_DOOR | BASH_DOOR | 
S:1_IN_3 | 
S:HEAL | BLINK | TPORT | BLIND | SLOW | 
S:BA_FIRE | BO_FIRE |
S:S_MONSTER | 
D:A scary and very powerful sorceress who just happens to like curry.

N:174:Ogre
G:O:U
I:110:13d9:20:33:30
W:13:2:0:50
B:HIT:HURT:2d8
F:FRIENDS | 
F:DROP_60 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | GIANT
D:A hideous, smallish giant that is often found near or with orcs.

N:175:Creeping mithril coins
G:$:B
I:110:20d8:5:50:10
W:13:4:0:45
B:HIT:HURT:2d5
B:TOUCH:POISON:3d5
F:ONLY_GOLD | DROP_90 | DROP_2D2 | 
F:COLD_BLOOD | BASH_DOOR | 
F:ANIMAL | 
F:IM_POIS | NO_CONF | NO_SLEEP
D:It is a pile of coins, shambling forward on thousands of tiny legs.

N:176:Illusionist
G:p:r
I:110:12d8:20:10:10
W:13:2:0:50
B:HIT:HURT:2d2
F:MALE | 
F:FORCE_SLEEP | DROP_1D2 | 
F:SMART | OPEN_DOOR | BASH_DOOR | 
F:EVIL
S:1_IN_3 | 
S:HASTE | BLINK | TPORT | BLIND | HOLD | SLOW | CONF | DARKNESS
D:A deceptive spell caster.

N:177:Druid
G:p:r
I:110:12d12:20:10:10
W:13:2:0:50
B:HIT:HURT:2d4
B:HIT:HURT:2d4
F:MALE | 
F:FORCE_SLEEP | DROP_1D2 | 
F:SMART | OPEN_DOOR | BASH_DOOR | 
F:EVIL
S:1_IN_3 | 
S:HASTE | BLINK | BLIND | HOLD | SLOW | BO_FIRE | BO_ELEC
D:A mystic at one with nature.  Om.

N:178:Black orc
G:o:D
I:110:12d10:20:36:20
W:13:2:0:45
B:HIT:HURT:3d4
B:HIT:HURT:3d4
F:MALE | 
F:FRIENDS | DROP_60 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | ORC | HURT_LITE
D:He is a large orc with powerful arms and deep black skin.

N:179:Ochre jelly
G:j:U
I:120:13d8:12:18:1
W:13:3:0:40
B:TOUCH:ACID:1d10
B:TOUCH:ACID:2d6
B:TOUCH:ACID:2d6
F:STUPID | EMPTY_MIND | COLD_BLOOD | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | 
F:IM_ACID | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:A fast moving highly acidic jelly thing, that is eating away the floor it 
D:rests on.

N:180:Giant flea
G:I:s
I:120:2d2:8:25:10
W:14:1:0:4
B:BITE:HURT:1d2
F:RAND_50 | RAND_25 | 
F:MULTIPLY | WEIRD_MIND | BASH_DOOR | 
F:ANIMAL
D:It makes you itch just to look at it.

N:181:Your Doppelganger
G:@:W
I:110:32d10:20:50:20
W:14:3:0:200
B:HIT:HURT:3d4
B:HIT:HURT:3d4
B:HIT:HURT:3d4
B:HIT:HURT:3d4
F:UNIQUE | MALE | 
F:FORCE_MAXHP | 
F:ONLY_ITEM | DROP_1D2 | DROP_GOOD | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | IM_COLD | IM_POIS
D:It looks just like you.

N:182:Giant white dragon fly
G:F:w
I:110:5d8:20:20:50
W:14:3:0:60
B:BITE:COLD:1d6
F:FORCE_SLEEP | 
F:RAND_50 | 
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL | IM_COLD
S:1_IN_10 | 
S:BR_COLD
D:It is a large fly that drips frost.

N:183:Blue icky thing
G:i:b
I:100:10d6:15:20:20
W:14:4:0:20
B:CRAWL:POISON:1d4
B:CRAWL:EAT_FOOD
B:HIT:HURT:1d4
B:HIT:HURT:1d4
F:FORCE_SLEEP | 
F:RAND_50 | 
F:MULTIPLY | OPEN_DOOR | BASH_DOOR | 
F:EVIL | IM_POIS
S:1_IN_8 | 
S:BLIND | CONF | SCARE
D:It is a strange, slimy, icky creature, with rudimentary intelligence, 
D:but evil cunning.  It hungers for food, and you look tasty.

N:184:Hill giant
G:P:U
I:110:16d10:20:45:50
W:14:1:0:60
B:HIT:HURT:3d6
B:HIT:HURT:3d6
F:DROP_60 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | GIANT
D:A ten foot tall humanoid with powerful muscles.

N:185:Flesh golem
G:g:R
I:110:12d8:12:30:10
W:14:1:0:50
B:HIT:HURT:1d6
B:HIT:HURT:1d6
F:EMPTY_MIND | BASH_DOOR | 
F:IM_ELEC | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:A shambling humanoid monster with long scars.

N:186:Owl Bear
G:C:s
I:120:8d8:20:20:40
W:14:2:0:40
B:BITE:HURT:1d8
F:RAND_25 | 
F:FRIENDS | 
F:BASH_DOOR | 
F:ANIMAL | 
D:It is an owl and it is a bear.  WTF!

N:187:Giant black louse
G:l:D
I:120:1d2:6:7:10
W:14:1:0:3
B:BITE:HURT:1d2
F:RAND_50 | 
F:WEIRD_MIND | MULTIPLY | 
F:ANIMAL
D:It makes you itch just to look at it.

N:188:Nomi
G:.:w
I:110:20d10:30:25:10
W:14:3:0:80
B:HIT:HURT:5d8
F:CHAR_CLEAR | ATTR_CLEAR | 
F:NEVER_MOVE | FORCE_MAXHP | 
F:EMPTY_MIND | INVISIBLE | COLD_BLOOD | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:Nomi is a little speck with a sign hanging above him that reads "He 
D:is here!"  However, he packs a terrific wallop.

N:189:Wererat
G:r:D
I:110:20d8:10:10:10
W:15:2:0:45
B:CLAW:HURT:1d8
B:CLAW:HURT:1d8
B:BITE:HURT:2d6
F:FORCE_SLEEP | 
F:ONLY_GOLD | DROP_60 | 
F:OPEN_DOOR | BASH_DOOR | 
F:ANIMAL | EVIL
S:1_IN_9 | 
S:BLINK | CAUSE_2 | BO_COLD | BA_POIS
D:A large rat with glowing red eyes.  The wererat is a disgusting creature, 
D:relishing in filth and disease.

N:190:Black ogre
G:O:D
I:110:20d9:20:33:30
W:15:2:0:75
B:HIT:HURT:2d8
B:HIT:HURT:2d8
F:RAND_25 | 
F:FRIENDS | DROP_60 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | GIANT
D:A massive orc-like figure with black skin and powerful arms.

N:191:Magic mushroom patch
G:,:B
I:130:1d1:40:10:0
W:15:2:0:10
F:FORCE_SLEEP | NEVER_MOVE | NEVER_BLOW | FRIENDS | 
F:STUPID | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_1 | 
S:BLINK | SLOW | SCARE | DARKNESS
D:Yum!  It looks quite tasty.  It seems to glow with an unusual light.

N:192:Guardian naga
G:n:B
I:110:24d11:20:65:120
W:15:2:0:80
B:CRUSH:HURT:2d8
B:BITE:HURT:1d8
B:BITE:HURT:1d8
F:FEMALE | 
F:RAND_25 | DROP_60 | DROP_1D2 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL
D:A giant snake-like figure with a woman's torso.

N:193:Light hound
G:Z:o
I:110:6d6:30:30:0
W:15:1:0:50
B:BITE:HURT:1d6
F:FORCE_SLEEP | 
F:FRIENDS | 
F:BASH_DOOR | 
F:ANIMAL
S:1_IN_5 | 
S:BR_LITE
D:A brilliant canine form whose light hurts your eyes, even at this distance.

N:194:Dark hound
G:Z:D
I:110:6d6:30:30:0
W:15:1:0:50
B:BITE:HURT:1d6
F:FORCE_SLEEP | 
F:FRIENDS | 
F:BASH_DOOR | 
F:ANIMAL
S:1_IN_5 | 
S:BR_DARK
D:A hole in the air in the shape of a huge hound.  No light falls upon its 
D:form.

N:195:Half-orc
G:o:s
I:110:16d10:20:40:20
W:15:3:0:50
B:HIT:HURT:3d4
B:HIT:HURT:3d4
F:MALE | 
F:FRIENDS | DROP_60 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | ORC
D:He is a hideous deformed cross-breed with man and orc, combining man's 
D:strength and cunning with orcish evil.

N:196:Giant tarantula
G:S:o
I:120:10d15:8:32:80
W:15:3:0:70
B:BITE:POISON:1d6
B:BITE:POISON:1d6
B:BITE:POISON:1d6
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL | IM_POIS
D:A giant spider with hairy black and red legs.

N:197:Giant clear centipede
G:c:w
I:110:5d8:12:30:30
W:15:2:0:30
B:BITE:HURT:2d4
B:STING:HURT:2d4
F:ATTR_CLEAR | 
F:INVISIBLE | WEIRD_MIND | BASH_DOOR | 
F:ANIMAL
D:It is about four feet long and carnivorous.

N:198:Mirkwood spider
G:S:g
I:120:9d8:15:25:80
W:15:2:0:25
B:BITE:HURT:1d8
B:BITE:POISON:1d6
B:BITE:POISON:1d6
F:FRIENDS | 
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL | EVIL | IM_POIS
D:A strong and powerful spider from Mirkwood forest.  Cunning and evil, it 
D:seeks to taste your juicy insides.

N:199:Frost giant
G:P:w
I:110:17d10:20:50:50
W:15:1:0:75
B:HIT:COLD:3d6
B:HIT:HURT:2d8
F:DROP_60 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | GIANT | 
F:IM_COLD
D:A twelve foot tall giant covered in furs.

N:200:Griffon
G:H:u
I:110:30d8:12:15:10
W:15:1:0:70
B:HIT:HURT:3d4
B:BITE:HURT:2d6
F:BASH_DOOR | 
F:ANIMAL
D:It is half lion, half eagle.  It flies menacingly towards you.

N:201:Homonculous
G:u:y
I:110:8d8:20:32:30
W:15:3:0:40
B:HIT:PARALYZE:1d2
B:HIT:HURT:1d10
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | DEMON | IM_FIRE | NO_FEAR
D:It is a small demonic spirit full of malevolence.

N:202:Gnome mage
G:h:r
I:110:7d8:20:20:20
W:15:2:0:40
B:HIT:HURT:1d5
F:MALE | 
F:FORCE_SLEEP | FRIENDS | DROP_60 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL
S:1_IN_4 | 
S:BLINK | DARKNESS | BO_COLD | 
S:S_MONSTER
D:A mage of short stature.

N:203:Clear hound
G:Z:w
I:110:10d6:30:30:0
W:15:2:0:50
B:BITE:HURT:1d6
B:BITE:HURT:1d6
B:BITE:HURT:1d6
F:ATTR_CLEAR | 
F:FRIENDS | 
F:INVISIBLE | BASH_DOOR | 
F:ANIMAL
D:A completely translucent hound.

N:204:Clay golem
G:g:U
I:110:14d8:12:30:10
W:15:2:0:50
B:HIT:HURT:1d8
B:HIT:HURT:1d8
F:EMPTY_MIND | COLD_BLOOD | BASH_DOOR | 
F:IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | 
F:HURT_ROCK | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:It is a massive animated statue made out of hardened clay.

N:205:Umber hulk
G:X:U
I:110:20d10:20:50:10
W:16:1:0:75
B:GAZE:CONFUSE
B:HIT:HURT:1d6
B:HIT:HURT:1d6
B:BITE:HURT:2d6
F:EMPTY_MIND | COLD_BLOOD | 
F:BASH_DOOR | KILL_WALL | 
F:ANIMAL | EVIL | 
F:IM_POIS | 
F:HURT_ROCK | NO_CONF | NO_SLEEP
D:This bizarre creature has glaring eyes and large mandibles capable of 
D:slicing through rock.

N:206:Orc captain
G:o:o
I:110:20d10:20:59:20
W:16:3:0:40
B:HIT:HURT:3d4
B:HIT:HURT:3d4
B:HIT:HURT:3d4
F:MALE | 
F:DROP_90 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | ORC
D:An armoured orc with an air of authority.

N:207:Gelatinous cube
G:j:G
I:110:36d10:12:18:1
W:16:4:0:80
B:TOUCH:ACID:1d10
B:TOUCH:ACID:1d10
B:TOUCH:ACID:1d10
F:FORCE_MAXHP | 
F:DROP_1D2 | DROP_4D2 | 
F:STUPID | EMPTY_MIND | COLD_BLOOD | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | 
F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:It is a strange, vast gelatinous structure that assumes cubic proportions 
D:as it lines all four walls of the corridors it patrols.  Through its 
D:transparent jelly structure you can see treasures it has engulfed, and a 
D:few corpses as well.

N:208:Giant green dragon fly
G:F:g
I:110:3d8:12:20:50
W:16:2:0:70
B:BITE:POISON:1d6
F:FORCE_SLEEP | RAND_50 | RAND_25 | 
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL | IM_POIS
S:1_IN_10 | 
S:BR_POIS
D:A vast, foul-smelling dragonfly.

N:209:Fire giant
G:P:r
I:110:20d8:20:60:50
W:16:2:0:54
B:HIT:FIRE:3d7
B:HIT:FIRE:3d7
F:DROP_60 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | GIANT | 
F:IM_FIRE
D:A glowing fourteen foot tall giant.  Flames drip from its red skin.

N:210:Hummerhorn
G:I:y
I:120:2d2:8:14:10
W:16:5:0:4
B:BITE:CONFUSE:2d2
F:RAND_50 | RAND_25 | 
F:MULTIPLY | WEIRD_MIND | 
F:ANIMAL
D:A giant buzzing wasp, its stinger drips venom.

N:211:Ryouga Hibiki
G:p:U
I:110:34d10:20:40:40
W:16:3:0:200
B:PUNCH:HURT:3d5
B:KICK:HURT:3d5
B:PUNCH:HURT:3d5
B:TOUCH:SHATTER
F:UNIQUE | 
F:MALE | 
F:FORCE_MAXHP | 
F:KILL_WALL |
F:ONLY_ITEM | DROP_90 | DROP_GOOD | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | 
D:Ryouga Hibiki, though lacking a good sense of direction, is nonetheless 
D:a very dangerous adversary.  Ever since mastering the 'Baku-sai ten 
D:getsu' attack, he has been able to shatter rocks and non living things.

N:212:Quasit
G:u:o
I:110:6d8:20:30:20
W:16:2:0:50
B:BITE:LOSE_DEX:1d6
B:CLAW:HURT:1d3
B:CLAW:HURT:1d3
F:FORCE_SLEEP | 
F:RAND_25 | 
F:ONLY_ITEM | DROP_1D2 | 
F:SMART | INVISIBLE | BASH_DOOR | 
F:EVIL | DEMON | IM_FIRE
S:1_IN_10 | 
S:BLINK | TPORT | TELE_TO | TELE_LEVEL | BLIND | CONF | SCARE
D:The chaotic evil master's favourite pet.

N:213:Imp
G:u:g
I:110:6d8:20:30:20
W:17:2:0:55
B:HIT:POISON:3d4
B:HIT:POISON:3d4
F:FORCE_SLEEP | 
F:RAND_25 | 
F:ONLY_ITEM | DROP_1D2 | 
F:SMART | INVISIBLE | COLD_BLOOD | BASH_DOOR | 
F:EVIL | DEMON | IM_FIRE
S:1_IN_10 | 
S:BLINK | TPORT | TELE_TO | TELE_LEVEL | BLIND | CONF | SCARE
D:The lawful evil master's favourite pet.

N:214:Forest troll
G:T:g
I:110:20d10:20:50:40
W:17:1:0:70
B:HIT:HURT:1d4
B:HIT:HURT:1d4
B:BITE:HURT:1d6
F:MALE | 
F:FRIENDS | DROP_60 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | TROLL | HURT_LITE
D:He is green skinned and ugly.

N:215:Akotto, servant of Zagoto
G:h:y
I:110:45d10:25:70:25
W:17:2:0:250
B:HIT:HURT:3d5
B:HIT:HURT:3d5
B:HIT:HURT:3d5
B:HIT:HURT:3d5
F:UNIQUE | MALE | 
F:FORCE_MAXHP | FORCE_SLEEP | 
F:ONLY_ITEM | DROP_1D2 | DROP_GOOD | 
F:OPEN_DOOR | BASH_DOOR | 
F:IM_FIRE | IM_COLD | IM_POIS | NO_CONF | NO_SLEEP
S:1_IN_6 | 
S:HEAL | BLIND | CONF | CAUSE_2 | MIND_BLAST |
S:S_MONSTER | S_MONSTERS | S_UNDEAD | S_DEMON | S_DRAGON | 
S:S_HYDRA | S_SPIDER | S_ANT | S_HOUND | S_UNIQUE | S_WRAITH | 
S:S_KIN
D:Zagoto's most trusted servant and a master of summoning.

N:216:2-headed hydra
G:M:u
I:110:100d3:20:60:20
W:17:2:0:80
B:BITE:HURT:2d6
B:BITE:HURT:2d6
F:FORCE_SLEEP | 
F:ONLY_GOLD | DROP_1D2 | 
F:OPEN_DOOR | BASH_DOOR | MOVE_BODY | 
F:ANIMAL
S:1_IN_11 | 
S:SCARE
D:A strange reptilian hybrid with two heads, guarding its hoard.

N:217:Water spirit
G:E:s
I:120:9d8:12:28:40
W:17:1:0:58
B:HIT:HURT:2d4
B:HIT:HURT:2d4
F:RAND_25 | 
F:EMPTY_MIND | COLD_BLOOD | BASH_DOOR | 
F:EVIL | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:A whirlpool of sentient liquid.

N:218:Giant pink scorpion
G:S:R
I:110:11d8:12:44:20
W:17:1:0:62
B:BITE:HURT:2d4
B:STING:LOSE_STR:1d7
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL
D:It is fast and poisonous.

N:219:Earth spirit
G:E:u
I:120:13d8:10:40:50
W:17:2:0:64
B:HIT:HURT:1d8
B:HIT:HURT:1d8
F:RAND_25 | 
F:EMPTY_MIND | COLD_BLOOD | 
F:PASS_WALL | 
F:EVIL | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | HURT_ROCK | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:A whirling form of sentient rock.

N:220:Fire spirit
G:E:r
I:120:10d9:16:30:20
W:18:2:0:75
B:HIT:FIRE:2d6
B:HIT:FIRE:2d6
F:RAND_25 | 
F:EMPTY_MIND | BASH_DOOR | 
F:EVIL | IM_FIRE | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:A whirlwind of sentient flame.

N:221:Fire hound
G:Z:r
I:110:10d6:30:30:0
W:18:1:0:70
B:BITE:FIRE:1d3
B:BITE:FIRE:1d3
B:BITE:FIRE:1d3
F:FORCE_SLEEP | 
F:FRIENDS | 
F:BASH_DOOR | 
F:ANIMAL | IM_FIRE
S:1_IN_10 | 
S:BR_FIRE
D:Flames lick at its feet and its tongue is a blade of fire.  You can feel a 
D:furnace heat radiating from the creature.

N:222:Cold hound
G:Z:w
I:110:10d6:30:30:0
W:18:1:0:70
B:BITE:COLD:1d6
B:CLAW:HURT:1d8
B:BITE:HURT:1d6
F:FORCE_SLEEP | 
F:FRIENDS | 
F:BASH_DOOR | 
F:ANIMAL | IM_COLD
S:1_IN_10 | 
S:BR_COLD
D:A hound as tall as a man, this creature appears to be composed of angular 
D:planes of ice.  Cold radiates from it and freezes your breath in the air.

N:223:Pikachu
G:r:y
I:110:10d6:30:30:0
W:18:1:0:70
B:BITE:ELEC:1d3
B:CLAW:ELEC:1d3
B:BITE:ELEC:1d3
B:MOAN
F:FORCE_SLEEP | 
F:FRIENDS | 
F:ANIMAL | IM_ELEC
S:1_IN_4 | 
S:BR_ELEC
D:Electric Pokemon.  Often refered to as an "Electric Mouse", this roundish 
D:yellow rodent pokmon specailizes in electric attacks.  Often shy but can 
D:sometimes have an electric personality. When several of them gather together 
D:they can cause lightning storms.

N:224:Mimic (potion)
G:!:w
I:110:10d10:25:30:0
W:18:3:0:60
B:HIT:POISON:3d4
B:HIT:HURT:2d3
B:HIT:HURT:2d3
F:CHAR_MULTI | 
F:FORCE_SLEEP | NEVER_MOVE | 
F:EMPTY_MIND | COLD_BLOOD | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_6 | 
S:BLIND | CONF | SCARE | CAUSE_2 | BO_COLD
D:A strange creature that disguises itself as discarded objects to lure 
D:unsuspecting adventurers within reach of its venomous claws.

N:225:Totoro
G:r:B
I:100:8d8:20:20:10
W:18:2:0:50
B:HIT:HURT:1d3
F:RAND_25 | 
F:FRIENDS | ALWAYS_HIT | INVISIBLE |
F:BASH_DOOR | MULTIPLY |
F:ANIMAL
S:1_IN_2 | 
S:BLINK |
S:S_KIN
D:A strange race of creatures that look like a cross between an owl and 
D:a rabbit.  They really like you...

N:226:Uruk
G:o:B
I:110:8d10:20:50:20
W:18:1:0:68
B:HIT:HURT:3d5
B:HIT:HURT:3d5
F:MALE | 
F:FORCE_MAXHP | FRIENDS | DROP_60 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | ORC | IM_POIS
D:He is a cunning orc of power, as tall as a man, and stronger.  It fears 
D:little.

N:227:Sadachiyo, the sexually ambiguous Ninja
G:p:v
I:130:40d10:20:60:20
W:18:2:0:400
B:HIT:HURT:1d8
B:HIT:HURT:1d8
B:HIT:HURT:1d5
B:HIT:HURT:1d5
F:UNIQUE | 
F:FORCE_MAXHP | 
F:ESCORT | 
F:ONLY_ITEM | DROP_1D2 | DROP_GOOD | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | IM_POIS
D:You cannot tell what sex this person is.

N:228:Chelsea Rorec
G:h:g
I:110:40d10:20:60:20
W:18:3:0:400
B:HIT:HURT:3d8
B:HIT:HURT:3d8
B:HIT:HURT:3d5
B:HIT:HURT:3d5
F:UNIQUE | FEMALE | 
F:FORCE_MAXHP | 
F:ONLY_ITEM | DROP_1D2 | DROP_GOOD | 
F:OPEN_DOOR | BASH_DOOR | 
S:1_IN_4 |
S:BR_GRAV
D:A power user who also happens to be the bodyguard for Ruri, the
D:Maiden of Life.  She is rumored to have the power of gravity.

N:229:Mandrake
G:,:W
I:110:20d6:20:16:40
W:18:2:0:75
B:HIT:POISON:1d8
B:HIT:POISON:1d8
F:STUPID | EMPTY_MIND | OPEN_DOOR | BASH_DOOR | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_1 | 
S:SHRIEK | 
D:A walking herb of death.

N:230:Stone giant
G:P:W
I:110:24d8:20:75:50
W:18:1:0:90
B:HIT:HURT:3d8
B:HIT:HURT:3d8
F:DROP_60 | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | 
F:EVIL | GIANT
D:It is eighteen feet tall and looking at you.

N:231:Giant black dragon fly
G:F:s
I:120:3d8:12:20:50
W:18:2:0:68
F:FORCE_SLEEP | NEVER_BLOW | RAND_50 | RAND_25 | 
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL | IM_ACID
S:1_IN_9 | 
S:BR_ACID
D:The size of a large bird, this fly drips caustic acid.

N:232:Stone golem
G:g:W
I:100:28d8:12:75:10
W:19:2:0:100
B:HIT:HURT:1d10
B:HIT:HURT:1d10
F:COLD_BLOOD | EMPTY_MIND | BASH_DOOR | 
F:IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | 
F:HURT_ROCK | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:It is a massive animated statue.

N:233:Red mold
G:m:r
I:110:17d8:2:16:70
W:19:1:0:64
B:TOUCH:FIRE:4d4
F:NEVER_MOVE | 
F:STUPID | EMPTY_MIND | 
F:IM_FIRE | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:It is a strange red growth on the dungeon floor; it seems to burn with 
D:flame.

N:234:Giant gold dragon fly
G:F:y
I:120:3d8:12:20:50
W:18:2:0:78
B:BITE:HURT:1d3
F:FORCE_SLEEP | 
F:RAND_50 | RAND_25 | 
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL | IM_FIRE
S:1_IN_9 | 
S:BR_SOUN
D:Large beating wings support this dazzling insect.  A loud buzzing noise 
D:pervades the air.

N:235:King Gorge, Lord of the Gluttons
G:o:r
I:120:50d10:20:50:20
W:20:4:0:800
B:HIT:HURT:3d6
B:HIT:HURT:3d6
B:HIT:HURT:3d6
B:HIT:HURT:3d6
F:UNIQUE | MALE | 
F:FORCE_MAXHP | 
F:ESCORT | 
F:ONLY_ITEM | DROP_2D2 | DROP_GOOD | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | ORC | IM_POIS |
S:1_IN_4 |
S:S_KIN
D:An Elite Master Chef, this monstrosity hails from one of the worst
D:anime series ever.  He is the master and bane of both Gluttons and 
D:Foodons alike.  You cringe at his wide girth and bad manners.

N:236:Phase spider
G:S:B
I:120:6d8:15:25:80
W:20:2:0:60
B:BITE:HURT:1d8
B:BITE:POISON:1d6
B:BITE:POISON:1d6
F:FRIENDS | 
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL | IM_POIS
S:1_IN_5 | 
S:BLINK | TELE_TO
D:A spider that never seems quite there.  Everywhere you look it is just 
D:half-seen in the corner of one eye.

N:237:3-headed hydra
G:M:o
I:120:100d5:20:65:20
W:20:2:0:350
B:BITE:HURT:2d6
B:BITE:HURT:2d6
B:BITE:HURT:2d6
F:FORCE_SLEEP | 
F:ONLY_GOLD | DROP_1D2 | DROP_2D2 | 
F:OPEN_DOOR | BASH_DOOR | MOVE_BODY | 
F:ANIMAL
S:1_IN_9 | 
S:SCARE
D:A strange reptilian hybrid with three heads, guarding its hoard.

N:238:Earth hound
G:Z:u
I:110:15d8:30:30:0
W:20:1:0:200
B:BITE:HURT:1d8
B:BITE:HURT:1d8
B:CLAW:HURT:3d3
B:CLAW:HURT:3d3
F:FORCE_SLEEP | 
F:FRIENDS | 
F:BASH_DOOR | 
F:ANIMAL
S:1_IN_10 | 
S:BR_SHAR
D:A beautiful crystalline shape does not disguise the danger this hound 
D:clearly presents.  Your flesh tingles as it approaches.

N:239:Air hound
G:Z:g
I:110:15d8:30:30:0
W:20:1:0:200
B:BITE:HURT:1d8
B:BITE:HURT:1d8
B:CLAW:HURT:3d3
B:CLAW:HURT:3d3
F:FORCE_SLEEP | 
F:FRIENDS | 
F:BASH_DOOR | 
F:ANIMAL | IM_POIS
S:1_IN_10 | 
S:BR_POIS
D:Swirling vapours surround this beast as it floats towards you, seemingly 
D:walking on air.  Noxious gases sting your throat.

N:240:Sabre-tooth tiger
G:f:y
I:120:20d14:40:50:0
W:20:2:0:120
B:CLAW:HURT:1d10
B:CLAW:HURT:1d10
B:BITE:HURT:1d10
B:BITE:HURT:1d10
F:BASH_DOOR | 
F:ANIMAL
D:A fierce and dangerous cat, its huge tusks and sharp claws would lacerate 
D:even the strongest armour.

N:241:Water hound
G:Z:s
I:110:15d8:30:30:0
W:20:2:0:200
B:BITE:ACID:2d8
B:BITE:ACID:2d8
B:CLAW:HURT:3d3
B:CLAW:HURT:3d3
F:FORCE_SLEEP | 
F:FRIENDS | 
F:BASH_DOOR | 
F:ANIMAL | IM_ACID
S:1_IN_10 | 
S:BR_ACID
D:Liquid footprints follow this hound as it pads around the dungeon.  An 
D:acrid smell of acid rises from the dog's pelt.

N:242:Chimera
G:H:r
I:110:13d8:12:15:10
W:20:1:0:200
B:BITE:HURT:1d10
B:BITE:FIRE:1d3
B:BITE:FIRE:1d3
F:FORCE_SLEEP | 
F:BASH_DOOR | 
F:IM_FIRE
S:1_IN_10 | 
S:BR_FIRE
D:It is a strange concoction of lion, dragon and goat.  It looks very odd 
D:but very avoidable.

N:243:Quylthulg
G:Q:y
I:110:6d8:10:1:0
W:20:1:0:250
F:FORCE_SLEEP | NEVER_MOVE | NEVER_BLOW
F:EMPTY_MIND | INVISIBLE | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_4 | 
S:BLINK | 
S:S_MONSTER
D:It is a strange pulsing mound of flesh.

N:244:Sasquatch
G:Y:g
I:120:20d19:15:40:10
W:20:3:0:180
B:CLAW:HURT:1d10
B:CLAW:HURT:1d10
B:BITE:HURT:2d8
F:OPEN_DOOR | BASH_DOOR | 
F:ANIMAL | IM_COLD
D:A tall shaggy, furry humanoid, it could call the yeti brother.

N:245:Werewolf
G:C:D
I:110:20d22:15:30:70
W:20:1:0:150
B:BITE:HURT:1d6
B:BITE:HURT:1d6
B:BITE:HURT:1d10
F:RAND_25 | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | 
F:ANIMAL | EVIL
D:It is a huge wolf with eyes that glow with manly intelligence.

N:246:Dark elven lord
G:h:D
I:120:18d15:20:40:30
W:20:2:0:500
B:HIT:HURT:3d8
B:HIT:HURT:3d5
F:MALE | 
F:FORCE_SLEEP | 
F:ONLY_ITEM | DROP_2D2 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | HURT_LITE
S:1_IN_5 | 
S:HASTE | BLIND | CONF | DARKNESS | BO_FIRE | BO_COLD
D:A dark elven figure in armour and radiating evil power.

N:247:Cloud giant
G:P:b
I:110:24d10:20:60:50
W:20:1:0:125
B:HIT:ELEC:3d8
B:HIT:ELEC:3d8
F:DROP_90 | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | 
F:EVIL | GIANT | IM_ELEC
D:It is a twenty foot tall giant wreathed in clouds.

N:248:Wang the Raalgon
G:h:b
I:110:64d10:20:90:20
W:20:4:0:550
B:HIT:HURT:3d5
B:HIT:HURT:3d5
B:HIT:HURT:3d5
B:HIT:HURT:3d5
F:UNIQUE | MALE | 
F:FORCE_MAXHP | 
F:ESCORT | 
F:ONLY_ITEM | DROP_1D2 | DROP_GOOD | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | IM_POIS
D:He is the counsellor for the princess of Raalgon.  A very cold and 
D:calculating person.

N:249:Kira Yoshinaka, bane of the Ako
G:p:b
I:110:82d10:20:95:20
W:21:3:0:550
B:HIT:HURT:3d8
B:HIT:HURT:3d8
B:HIT:HURT:3d5
B:HIT:HURT:3d5
F:UNIQUE | MALE | 
F:FORCE_MAXHP | 
F:ESCORT | 
F:ONLY_ITEM | DROP_1D2 | DROP_GOOD | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | IM_FIRE | IM_COLD | IM_POIS | NO_CONF | NO_SLEEP
D:A greedy, arrogant, dishonorable damiyo lord who is the master of 
D:the Shogun's ceremonies.  Kira is the one responsible for the
D:death of Lord Asano of the Ako, and the disbandment of the Ako 
D:tribe.  Now he is on the run from the Ako ronin.

N:250:Blue dragon bat
G:b:b
I:130:4d4:12:26:50
W:21:1:0:54
B:BITE:ELEC:1d3
F:FORCE_SLEEP | 
F:RAND_50 | 
F:BASH_DOOR | 
F:ANIMAL | IM_ELEC
S:1_IN_4 | 
S:BR_ELEC
D:It is a glowing blue bat with a sharp tail.

N:251:Mimic (scroll)
G:?:w
I:110:10d14:30:40:0
W:21:3:0:60
B:HIT:POISON:3d4
B:HIT:POISON:3d4
B:HIT:HURT:2d3
B:HIT:HURT:2d3
F:CHAR_MULTI | 
F:FORCE_SLEEP | NEVER_MOVE | 
F:EMPTY_MIND | COLD_BLOOD | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_5 | 
S:BLIND | CONF | SCARE | CAUSE_2 | BO_FIRE | 
S:S_MONSTER
D:A strange creature that disguises itself as discarded objects to lure 
D:unsuspecting adventurers within reach of its venomous claws.

N:252:Fire vortex
G:v:r
I:110:9d9:100:30:0
W:21:1:0:100
B:ENGULF:FIRE:3d3
F:FORCE_SLEEP | RAND_50 | 
F:EMPTY_MIND | BASH_DOOR | POWERFUL | 
F:IM_FIRE | NO_FEAR | NO_CONF | NO_SLEEP
S:1_IN_6 | 
S:BR_FIRE
D:A whirling maelstrom of fire.

N:253:Water vortex
G:v:s
I:110:9d9:100:30:0
W:21:1:0:100
B:ENGULF:ACID:3d3
F:FORCE_SLEEP | RAND_50 | 
F:EMPTY_MIND | BASH_DOOR | POWERFUL | 
F:IM_ACID | NO_FEAR | NO_CONF | NO_SLEEP
S:1_IN_6 | 
S:BR_ACID
D:A caustic spinning whirlpool of water.

N:254:Cold vortex
G:v:w
I:110:9d9:100:30:0
W:21:1:0:100
B:ENGULF:COLD:3d3
F:FORCE_SLEEP | RAND_50 | 
F:EMPTY_MIND | BASH_DOOR | POWERFUL | 
F:IM_COLD | NO_FEAR | NO_CONF | NO_SLEEP
S:1_IN_6 | 
S:BR_COLD
D:A twisting whirlpool of frost.

N:255:Energy vortex
G:v:b
I:110:12d12:100:30:0
W:21:1:0:130
B:ENGULF:ELEC:5d5
F:FORCE_SLEEP | RAND_50 | 
F:EMPTY_MIND | BASH_DOOR | POWERFUL | 
F:IM_ELEC | NO_FEAR | NO_CONF | NO_SLEEP
S:1_IN_6 | 
S:BR_ELEC
D:A shimmering tornado of air, sparks crackle along its length.

N:256:Mummified orc
G:z:w
I:110:15d8:20:28:75
W:21:1:0:56
B:HIT:HURT:2d4
B:HIT:HURT:2d4
F:DROP_90 | 
F:EMPTY_MIND | COLD_BLOOD | OPEN_DOOR | BASH_DOOR | 
F:EVIL | ORC | UNDEAD | 
F:IM_COLD | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:It is an orcish figure covered in wrappings.

N:257:Killer stag beetle
G:K:g
I:110:20d8:12:55:30
W:22:1:0:80
B:CLAW:HURT:1d12
B:CLAW:HURT:1d12
F:RAND_25 | 
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL
D:It is a giant beetle with vicious claws.

N:258:Iron golem
G:g:s
I:110:80d12:12:80:10
W:22:2:0:160
B:HIT:HURT:1d12
F:FORCE_SLEEP | 
F:EMPTY_MIND | COLD_BLOOD | BASH_DOOR | 
F:IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_7 | 
S:SLOW
D:It is a massive metal statue that moves steadily towards you.

N:259:Giant yellow scorpion
G:S:y
I:110:12d8:12:38:20
W:22:1:0:60
B:BITE:HURT:1d8
B:STING:POISON:2d5
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL
D:It is a giant scorpion with a sharp stinger.

N:260:Black ooze
G:j:D
I:90:6d8:10:6:1
W:23:1:0:7
B:TOUCH:ACID:2d6
F:RAND_50 | DROP_60 | 
F:STUPID | EMPTY_MIND | MULTIPLY | 
F:TAKE_ITEM | KILL_BODY | OPEN_DOOR | BASH_DOOR | 
F:IM_POIS | NO_FEAR
S:1_IN_11 | 
S:DRAIN_MANA
D:It is a strangely moving puddle.

N:261:Hardened warrior
G:p:u
I:110:15d11:20:40:40
W:23:1:0:60
B:HIT:HURT:3d5
B:HIT:HURT:3d5
F:MALE | 
F:DROP_1D2 | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | 
F:EVIL
D:A scarred warrior who moves with confidence.

N:262:Hojo Tokisuke
G:p:d
I:140:90d10:20:80:20
W:23:5:0:1111
B:HIT:HURT:5d5
B:HIT:HURT:5d5
B:HIT:HURT:5d5
F:UNIQUE | MALE | 
F:FORCE_MAXHP | 
F:ESCORT | ESCORTS | 
F:SMART | ONLY_ITEM | DROP_2D2 | DROP_GOOD | 
F:OPEN_DOOR | BASH_DOOR | 
D:A warrior of insane skill and intelligence.  He is the older brother of 
D:the legendary Hojo Tokimune, the man responsible for saving Japan from 
D:Genghis Khan.

N:263:Master rogue
G:p:B
I:120:15d9:20:30:40
W:23:2:0:110
B:HIT:HURT:2d8
B:HIT:HURT:2d8
B:HIT:EAT_GOLD:4d4
F:MALE | 
F:DROP_2D2 | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | 
F:EVIL
D:A thief of great power and shifty speed.

N:264:Red dragon bat
G:b:r
I:130:3d8:12:28:50
W:23:1:0:60
B:BITE:FIRE:1d3
F:FORCE_SLEEP | RAND_50 | 
F:BASH_DOOR | 
F:ANIMAL | IM_FIRE
S:1_IN_4 | 
S:BR_FIRE
D:It is a sharp-tailed bat, wreathed in fire.

N:265:Killer white beetle
G:K:w
I:110:20d8:14:55:30
W:23:1:0:85
B:BITE:HURT:4d5
F:RAND_25 | 
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL
D:It is looking for prey.

N:266:Giant bronze dragon fly
G:F:U
I:120:3d8:12:20:50
W:18:1:0:70
F:FORCE_SLEEP | NEVER_BLOW | 
F:RAND_50 | RAND_25 | 
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL | NO_CONF | NO_SLEEP
S:1_IN_9 | 
S:BR_CONF
D:This vast gleaming bronze fly has wings which beat mesmerically fast.

N:267:Forest wight
G:W:g
I:110:12d8:20:30:30
W:24:1:0:140
B:HIT:HURT:1d6
B:HIT:HURT:1d6
B:TOUCH:EXP_20
F:FORCE_SLEEP | RAND_25 | 
F:DROP_60 | DROP_90 | 
F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR | 
F:EVIL | UNDEAD | IM_COLD | IM_POIS | HURT_LITE | 
F:NO_CONF | NO_SLEEP
S:1_IN_10 | 
S:SCARE | DRAIN_MANA
D:It is a ghostly apparition with a humanoid form.

N:268:Happosai
G:p:U
I:120:82d10:20:80:10
W:24:2:0:300
B:HIT:HURT:3d6
B:HIT:HURT:3d6
B:HIT:EAT_ITEM:3d6
B:HIT:EAT_GOLD:3d6
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_1D2 | DROP_GOOD | 
F:OPEN_DOOR | BASH_DOOR | 
F:IM_FIRE | IM_COLD | NO_CONF | NO_SLEEP
S:1_IN_4 | 
S:HEAL | SLOW | BO_FIRE | BA_FIRE | TPORT
D:An old panty thief that is experienced in martial arts and is 
D:downright irritating to deal with.

N:269:Suou Ginta
G:p:b
I:110:82d10:20:80:10
W:24:2:0:300
B:HIT:HURT:3d6
B:HIT:HURT:3d6
B:HIT:HURT:3d6
B:HIT:UN_BONUS
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_1D2 | DROP_GOOD | 
F:OPEN_DOOR | BASH_DOOR | 
F:IM_FIRE | IM_COLD | NO_CONF | NO_SLEEP
D:A loser tennis player who rejects hot chicks to date Rei-clones.

N:270:4-headed hydra
G:M:y
I:120:100d6:20:70:20
W:24:2:0:350
B:BITE:HURT:2d6
B:BITE:HURT:2d6
B:BITE:HURT:2d6
B:BITE:HURT:2d6
F:FORCE_SLEEP | 
F:ONLY_GOLD | DROP_4D2 | 
F:OPEN_DOOR | BASH_DOOR | MOVE_BODY | 
F:ANIMAL
S:1_IN_7 | 
S:SCARE
D:A strange reptilian hybrid with four heads, guarding its hoard.

N:271:Mummified human
G:z:w
I:110:17d9:20:34:60
W:24:1:0:70
B:HIT:HURT:2d4
B:HIT:HURT:2d4
F:ONLY_ITEM | DROP_90 | 
F:EMPTY_MIND | COLD_BLOOD | OPEN_DOOR | BASH_DOOR | 
F:EVIL | UNDEAD | IM_COLD | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:It is a human form encased in mouldy wrappings.

N:272:Vampire bat
G:b:v
I:120:9d10:12:40:50
W:24:2:0:150
B:BITE:EXP_40:1d4
B:BITE:EXP_40:1d4
F:RAND_50 | COLD_BLOOD | REGENERATE | 
F:EVIL | ANIMAL | UNDEAD | IM_COLD | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:An undead bat that flies at your neck hungrily.

N:273:Vicious of Red Dragon
G:p:u
I:110:80d10:25:80:25
W:24:2:0:400
B:HIT:HURT:6d8
B:HIT:HURT:8d6
B:HIT:HURT:8d6
B:HIT:HURT:8d6
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_90 | DROP_1D2 | DROP_GOOD | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | IM_FIRE | IM_ELEC | NO_CONF | NO_SLEEP
S:1_IN_4 | 
S:SLOW | FORGET | HASTE | MISSILE
D:A violent, cold hearted man who mercilessly carries out his tasks for 
D:the Red Dragon Crime Syndicate.

N:274:Kyosuke Kagami
G:p:u
I:110:80d10:25:80:25
W:24:2:0:400
B:PUNCH:HURT:4d6
B:KICK:HURT:4d6
B:PUNCH:HURT:4d6
B:KICK:HURT:4d6
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_90 | DROP_1D2 | DROP_GOOD | 
F:OPEN_DOOR | BASH_DOOR | 
F:IM_FIRE | IM_ELEC | NO_CONF | NO_SLEEP
S:1_IN_4 | 
S:BO_FIRE | BO_COLD | BA_COLD |
D:Although a member of the morals committee in Taiyo HS, Kyosuke is actually
D:Hyo's collaborator in the plan to reform the world by force.

N:275:Banshee
G:G:b
I:120:6d8:20:24:10
W:24:2:0:60
B:WAIL:TERRIFY
B:TOUCH:EXP_20
F:FEMALE | 
F:RAND_50 | DROP_1D2 | 
F:INVISIBLE | COLD_BLOOD | TAKE_ITEM | PASS_WALL | 
F:EVIL | UNDEAD | IM_COLD | IM_POIS | NO_CONF | NO_SLEEP
S:1_IN_15 | 
S:TPORT | DRAIN_MANA
D:It is a ghostly woman's form that wails mournfully.

N:276:Pukelman
G:g:D
I:110:80d12:12:80:10
W:25:3:0:600
B:HIT:HURT:1d12
B:HIT:HURT:3d6
F:FORCE_SLEEP | 
F:EMPTY_MIND | COLD_BLOOD | BASH_DOOR | 
F:IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | 
F:HURT_ROCK | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_4 | 
S:SLOW | CONF | BO_ACID
D:A stumpy figure carved from stone, with glittering eyes, this sentinel 
D:strides towards you with deadly intent.

N:277:Dark elven druid
G:h:g
I:120:20d20:15:75:10
W:25:3:0:500
B:HIT:HURT:1d7
B:HIT:HURT:1d7
B:HIT:HURT:3d8
F:MALE | 
F:FORCE_SLEEP | 
F:ONLY_ITEM | DROP_1D2 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | IM_POIS | HURT_LITE | NO_CONF | NO_SLEEP
S:1_IN_6 | 
S:HEAL | CONF | DARKNESS | 
S:S_MONSTER | S_SPIDER
D:A powerful dark elf, with mighty nature-controlling enchantments.

N:278:Stone troll
G:T:W
I:110:23d10:20:40:50
W:25:1:0:85
B:HIT:HURT:1d6
B:HIT:HURT:1d6
B:BITE:HURT:3d4
F:MALE | 
F:FRIENDS | DROP_60 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | TROLL | HURT_LITE | HURT_ROCK
D:He is a giant troll with scabrous black skin.

N:279:Troll priest
G:T:G
I:110:30d10:20:50:30
W:25:1:0:100
B:HIT:HURT:1d8
B:HIT:HURT:1d8
B:BITE:HURT:3d4
F:MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | DROP_90 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | TROLL | HURT_LITE | NO_CONF | NO_SLEEP
S:1_IN_5 | 
S:BLINK | SCARE | CAUSE_1 | MISSILE | DARKNESS
D:A troll who is so bright he knows how to read.

N:280:Wereworm
G:w:D
I:110:100d11:15:70:20
W:25:3:0:300
B:GAZE:EXP_20
B:CRAWL:ACID:2d4
B:BITE:HURT:1d10
B:BITE:POISON:1d6
F:BASH_DOOR | 
F:ANIMAL | IM_ACID
D:A huge wormlike shape dripping acid, twisted by evil sorcery into a foul 
D:monster that breeds on death.

N:281:Carrion crawler
G:c:o
I:110:20d12:15:40:10
W:25:2:0:60
B:STING:PARALYZE:2d6
B:STING:PARALYZE:2d6
F:RAND_25 | 
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL | IM_POIS
D:A hideous centipede covered in slime and with glowing tentacles around its 
D:head.

N:282:Killer pink beetle
G:K:R
I:110:20d8:14:50:30
W:25:2:0:85
B:BITE:LOSE_STR:4d4
F:RAND_25 | 
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL
D:It is a giant beetle with poisonous mandibles.

N:283:Giant grey ant
G:a:s
I:110:19d8:10:40:40
W:26:1:0:90
B:BITE:HURT:2d12
F:RAND_25 | KILL_BODY | 
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL
D:It is an ant encased in shaggy grey fur.

N:284:Morrigan the Succubus
G:V:v
I:110:85d10:20:40:40
W:26:4:0:500
B:PUNCH:HURT:4d6
B:KICK:HURT:4d6
B:PUNCH:HURT:4d6
F:UNIQUE | FEMALE | 
F:FORCE_MAXHP | 
F:ONLY_ITEM | DROP_90 | DROP_GOOD | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | 
S:1_IN_3 | 
S:MISSILE
D:She is known as a temptress, and a mistress of the night.  Her looks
D: belie the fact that she is the rightful ruler of Makai 


N:285:Displacer beast
G:f:D
I:110:25d10:35:100:20
W:26:2:0:100
B:BITE:HURT:2d8
B:HIT:HURT:1d10
B:HIT:HURT:1d10
B:HIT:HURT:1d10
F:INVISIBLE | BASH_DOOR | 
F:ANIMAL
D:It is a huge black panther, clubbed tentacles sprouting from its shoulders.

N:286:Giant red tick
G:S:r
I:110:16d8:14:54:20
W:26:1:0:90
B:BITE:FIRE:3d6
F:RAND_25 | 
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL | IM_FIRE
D:It is smoking and burning with great heat.

N:287:Cave ogre
G:O:u
I:110:30d9:20:33:30
W:26:1:0:42
B:HIT:HURT:3d8
B:HIT:HURT:3d8
F:FRIENDS | DROP_60 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | GIANT
D:A giant orc-like figure with an awesomely muscled frame.

N:288:White wraith
G:W:w
I:110:15d8:20:40:10
W:26:1:0:175
B:HIT:HURT:1d6
B:HIT:HURT:1d6
B:TOUCH:EXP_20
F:FORCE_SLEEP | 
F:DROP_1D2 | 
F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR | 
F:EVIL | UNDEAD | IM_COLD | IM_POIS | HURT_LITE | NO_CONF | NO_SLEEP
S:1_IN_8 | 
S:SCARE | CAUSE_2 | DARKNESS
D:It is a tangible but ghostly form made of white fog.

N:289:Monadic Deva
G:A:o
I:110:30d10:30:60:255
W:26:6:0:220
B:HIT:HURT:3d4
B:HIT:HURT:3d4
B:HIT:HURT:3d4
B:HIT:HURT:3d4
F:FORCE_MAXHP | FORCE_SLEEP | 
F:ONLY_ITEM | DROP_2D2 | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | POWERFUL | 
F:IM_ACID | IM_POIS | NO_CONF | NO_SLEEP
S:1_IN_3 | 
S:BLIND | CONF | SCARE | FORGET
D:A lesser angel wearing little more than a loincloth - its steely skin 
D:provides all the protection it needs.

N:290:Gatsu
G:p:D
I:120:11d100:20:80:20
W:27:4:0:1000
B:HIT:HURT:3d8
B:HIT:HURT:3d8
B:HIT:HURT:3d8
B:HIT:UN_BONUS
F:UNIQUE | MALE | 
F:FORCE_MAXHP | FORCE_SLEEP | 
F:ONLY_ITEM | DROP_2D2 | DROP_GOOD | 
F:OPEN_DOOR | BASH_DOOR | 
F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | 
F:NO_CONF | NO_SLEEP
D:An extremely evil looking buff guy who swings a really huge sword.

N:291:Killer red beetle
G:K:r
I:110:13d8:14:45:30
W:27:1:0:95
B:BITE:HURT:3d4
B:SPIT:FIRE:4d5
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL | IM_FIRE
D:It is a giant beetle wreathed in flames.

N:292:Creeping adamantite coins
G:$:G
I:120:20d25:5:50:10
W:27:4:0:45
B:BITE:POISON:3d4
B:TOUCH:POISON:3d5
B:HIT:HURT:1d12
B:HIT:HURT:1d12
F:ONLY_GOLD | DROP_90 | DROP_2D2 | 
F:COLD_BLOOD | BASH_DOOR | 
F:ANIMAL | 
F:IM_POIS | NO_CONF | NO_SLEEP
D:It is a pile of coins, slithering forward on thousands of tiny legs.

N:293:Algroth
G:T:o
I:110:21d12:20:60:40
W:27:1:0:150
B:CLAW:POISON:3d3
B:CLAW:POISON:3d3
B:BITE:HURT:1d6
F:FRIENDS | DROP_60 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | TROLL | IM_POIS
D:A powerful troll form.  Venom drips from its needlelike claws.

N:294:Vibration hound
G:Z:y
I:110:25d10:30:30:0
W:27:3:0:250
B:BITE:HURT:2d6
B:BITE:HURT:2d6
B:CLAW:HURT:3d3
B:CLAW:HURT:3d3
F:FORCE_SLEEP | 
F:FRIENDS | 
F:BASH_DOOR | 
F:ANIMAL | NO_CONF | NO_SLEEP
S:1_IN_5 | 
S:BR_SOUN
D:A blurry canine form which seems to be moving as fast as the eye can 
D:follow.  You can feel the earth resonating beneath your feet.

N:295:Nexus hound
G:Z:R
I:110:25d10:30:30:0
W:27:3:0:250
B:BITE:HURT:2d8
B:BITE:HURT:2d8
B:CLAW:HURT:3d3
B:CLAW:HURT:3d3
F:FORCE_SLEEP | 
F:FRIENDS | 
F:BASH_DOOR | 
F:ANIMAL | NO_CONF | NO_SLEEP
S:1_IN_5 | 
S:BR_NEXU
D:A locus of conflicting points coalesce to form the vague shape of a huge 
D:hound.  Or is it just your imagination?

N:296:Ogre mage
G:O:r
I:110:30d12:20:40:30
W:27:2:0:300
B:HIT:HURT:3d8
B:HIT:HURT:3d8
B:HIT:HURT:3d8
B:HIT:HURT:3d8
F:FORCE_SLEEP | 
F:DROP_1D2 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | GIANT
S:1_IN_4 | 
S:HEAL | HOLD | TRAPS | BA_COLD | 
S:S_MONSTER
D:A hideous ogre wrapped in black sorcerous robes.

N:297:Ryoko the Space Pirate
G:f:r
I:120:15d100:20:100:20
W:27:2:0:1500
B:HIT:HURT:6d6
B:HIT:HURT:6d6
B:HIT:HURT:6d6
F:UNIQUE | FEMALE | 
F:FORCE_MAXHP | 
F:ONLY_ITEM | DROP_2D2 | DROP_GOOD | 
F:OPEN_DOOR | BASH_DOOR | 
F:IM_POIS | IM_ELEC | 
S:1_IN_4 | 
S:BLIND | MIND_BLAST | DARKNESS | MISSILE | BO_ELEC |
D:An infamous space pirate who has plagues the Jureians for countless 
D:years.  She is one of the most dangerous opponents out there.

N:298:Vampire
G:V:v
I:110:25d12:20:45:10
W:27:1:0:175
B:HIT:HURT:1d6
B:HIT:HURT:1d6
B:BITE:EXP_20:1d4
B:BITE:EXP_20:1d4
F:FORCE_SLEEP | 
F:COLD_BLOOD | DROP_60 | DROP_1D2 | 
F:OPEN_DOOR | BASH_DOOR | REGENERATE | 
F:EVIL | UNDEAD | IM_COLD | IM_POIS | HURT_LITE | NO_CONF | NO_SLEEP
S:1_IN_9 | 
S:TELE_TO | HOLD | SCARE | CAUSE_2 | MIND_BLAST | FORGET | DARKNESS
D:It is a humanoid with an aura of power.  You notice a sharp set of front 
D:teeth.

N:299:Gorgimera
G:H:o
I:110:25d20:12:55:10
W:27:2:0:200
B:BITE:FIRE:1d3
B:BITE:FIRE:1d3
B:BITE:HURT:1d10
B:GAZE:PARALYZE:2d4
F:FORCE_SLEEP | 
F:BASH_DOOR | 
F:IM_FIRE
S:1_IN_8 | 
S:BR_FIRE
D:The result of evil experiments, this travesty of nature should never be 
D:alive.  It has 3 heads - gorgon, goat and dragon - all attached to a 
D:lion's body.

N:300:Colbran
G:g:y
I:120:80d12:12:80:10
W:27:2:0:900
B:HIT:ELEC:3d8
B:HIT:ELEC:3d8
F:FORCE_SLEEP | 
F:EMPTY_MIND | COLD_BLOOD | BASH_DOOR | 
F:IM_ELEC | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_3 | 
S:BO_ELEC
D:A man-shaped form of living lightning, sparks and shocks crackle all over 
D:this madly capering figure, as it leaps and whirls around and about you.

N:301:Spirit naga
G:n:w
I:110:30d15:20:75:120
W:28:2:0:60
B:CRUSH:HURT:2d8
B:CRUSH:HURT:2d8
B:BITE:HURT:1d8
B:BITE:HURT:1d8
F:FEMALE | 
F:FORCE_SLEEP | 
F:ONLY_ITEM | DROP_90 | DROP_2D2 | 
F:INVISIBLE | OPEN_DOOR | BASH_DOOR | 
F:EVIL | NO_CONF | NO_SLEEP
S:1_IN_4 | 
S:HEAL | BLIND | MIND_BLAST | DARKNESS
D:A wraithly snake-like form with the torso of a beautiful woman, it is the 
D:most powerful of its kind.

N:302:5-headed hydra
G:M:g
I:120:100d8:20:80:20
W:28:2:0:350
B:BITE:POISON:4d4
B:BITE:POISON:4d4
B:BITE:POISON:4d4
B:BITE:POISON:4d4
F:FORCE_SLEEP | 
F:ONLY_GOLD | DROP_1D2 | DROP_4D2 | 
F:BASH_DOOR | MOVE_BODY | 
F:ANIMAL | IM_POIS
S:1_IN_5 | 
S:SCARE | BA_POIS
D:A strange reptilian hybrid with five heads dripping venom.

N:303:Hentai tentacle monster
G:p:s
I:120:30d10:20:70:10
W:28:1:0:240
B:HIT:HURT:5d5
B:HIT:HURT:5d5
B:HIT:HURT:5d5
F:MALE | 
F:FORCE_SLEEP | DROP_1D2 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL
S:1_IN_8 | 
S:BLIND | SCARE | CAUSE_3 | DARKNESS
D:The bane of women and young girls everywhere.

N:304:The Walking Daikon
G:P:w
I:110:50d100:20:70:40
W:28:4:0:600
B:HIT:HURT:4d6
B:HIT:HURT:4d6
B:HIT:HURT:4d6
B:HIT:HURT:3d5
F:UNIQUE | MALE | 
F:FORCE_MAXHP | 
F:ONLY_ITEM | DROP_1D2 | DROP_GOOD | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | 
D:A massive walking Daikon.

N:305:Mage
G:p:r
I:110:15d8:20:40:10
W:28:1:0:150
B:HIT:HURT:2d5
B:HIT:HURT:2d5
F:MALE | 
F:FORCE_SLEEP | 
F:ONLY_ITEM | DROP_1D2 | 
F:SMART | OPEN_DOOR | BASH_DOOR | 
F:EVIL
S:1_IN_3 | 
S:HASTE | TPORT | TELE_TO | BLIND | CONF | 
S:BO_FIRE | BO_COLD | BO_ELEC | 
S:S_MONSTER
D:A mage of some power - you can tell by the size of his hat.

N:306:Mind flayer
G:h:R
I:110:15d10:20:60:10
W:28:1:0:200
B:GAZE:LOSE_INT:2d6
B:GAZE:LOSE_INT:2d6
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_60 | DROP_1D2 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | NO_CONF | NO_SLEEP
S:1_IN_8 | 
S:BLIND | HOLD | SCARE | MIND_BLAST | BRAIN_SMASH | FORGET
D:A humanoid form with a gruesome head, tentacular mouth, and piercing 
D:eyes.  Claws reach out for you and you feel a presence invade your mind.

N:307:Nakago, Shogun of Kotou
G:p:v
I:120:52d10:20:50:20
W:28:5:0:750
B:HIT:POISON:3d4
B:HIT:POISON:3d4
B:HIT:HURT:3d4
F:UNIQUE | 
F:FORCE_MAXHP | FORCE_SLEEP | 
F:RAND_25 | 
F:ONLY_ITEM | DROP_4D2 | DROP_GOOD | 
F:SMART | INVISIBLE | BASH_DOOR | 
F:EVIL | IM_FIRE
S:1_IN_5 | 
S:BLINK | TPORT | TELE_TO | TELE_AWAY | TELE_LEVEL | BLIND | 
S:CONF | SCARE | S_KIN
D:Fearsome with both magic and sword, he is a pretty blond boy, despite 
D:the fact that he is quite evil.

N:308:Basilisk
G:R:b
I:120:20d30:15:90:30
W:28:3:0:300
B:GAZE:PARALYZE
B:BITE:HURT:2d12
B:BITE:HURT:2d12
B:BITE:HURT:2d12
F:ONLY_ITEM | DROP_1D2 | 
F:OPEN_DOOR | BASH_DOOR | 
F:ANIMAL | NO_CONF | NO_SLEEP
D:An evil reptile that preys on unsuspecting travellers.  Its eyes stare 
D:deeply at you and your soul starts to wilt!

N:309:Ice troll
G:T:w
I:110:24d10:20:56:50
W:28:1:0:160
B:HIT:HURT:1d5
B:HIT:HURT:1d5
B:HIT:HURT:1d5
B:BITE:COLD:3d6
F:MALE | 
F:FRIENDS | DROP_60 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | TROLL | IM_COLD | HURT_LITE
D:He is a white troll with powerfully clawed hands.

N:310:Giant purple worm
G:w:v
I:110:65d8:14:65:30
W:29:3:0:400
B:HIT:HURT:1d8
B:BITE:ACID:2d8
B:STING:POISON:1d8
F:BASH_DOOR | 
F:ANIMAL | IM_ACID | IM_POIS
D:It is a massive worm form, many feet in length.  Its vast maw drips acid 
D:and poison.

N:311:Movanic Deva
G:A:B
I:110:40d10:30:68:255
W:29:6:0:400
B:HIT:HURT:3d5
B:HIT:HURT:3d5
B:HIT:HURT:3d5
B:HIT:HURT:3d5
F:FORCE_MAXHP | FORCE_SLEEP | 
F:ONLY_ITEM | DROP_2D2 | 
F:SMART | TAKE_ITEM | OPEN_DOOR | BASH_DOOR | POWERFUL | 
F:IM_FIRE | IM_COLD | IM_POIS | NO_CONF | NO_SLEEP
S:1_IN_3 | 
S:HEAL | HASTE | BLIND | CONF | SCARE
D:A lesser angel protected by an aura of holiness.  Its muscular form looks 
D:extremely powerful next to your own frail body.

N:312:Catoblepas
G:q:g
I:110:30d10:15:55:40
W:29:2:0:400
B:GAZE:TERRIFY:2d4
B:GAZE:BLIND:2d4
B:BUTT:HURT:2d6
B:BITE:HURT:2d12
F:ONLY_GOLD | DROP_2D2 | 
F:BASH_DOOR | 
F:ANIMAL | IM_POIS
D:A strange ox-like form with a huge head but a thin, weak neck, it looks 
D:likes the creation of some deranged alchemist.

N:313:Mimic (ring)
G:=:w
I:120:10d35:30:60:100
W:29:3:0:200
B:HIT:POISON:3d4
B:HIT:POISON:3d4
B:HIT:POISON:3d4
B:HIT:POISON:3d4
F:CHAR_MULTI | 
F:FORCE_SLEEP | NEVER_MOVE | 
F:EMPTY_MIND | COLD_BLOOD | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_4 | 
S:BLIND | CONF | SCARE | CAUSE_2 | FORGET | 
S:BO_ACID | BO_FIRE | BO_COLD | BO_ELEC | 
S:S_MONSTER
D:A strange creature that disguises itself as discarded objects to lure 
D:unsuspecting adventurers within reach of its venomous claws.

N:314:Young blue dragon
G:d:b
I:110:27d10:20:50:70
W:29:1:0:300
B:CLAW:HURT:1d4
B:CLAW:HURT:1d4
B:BITE:HURT:1d6
F:FORCE_SLEEP | FORCE_MAXHP | 
F:DROP_60 | DROP_90 | DROP_1D2 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | DRAGON | IM_ELEC
S:1_IN_11 | 
S:SCARE | 
S:BR_ELEC
D:It has a form that legends are made of.  Its still-tender scales are a 
D:deep blue in hue.  Sparks crackle along its length.

N:315:Young white dragon
G:d:w
I:110:27d10:20:50:70
W:29:1:0:275
B:CLAW:HURT:1d4
B:CLAW:HURT:1d4
B:BITE:HURT:1d6
F:FORCE_SLEEP | FORCE_MAXHP | 
F:DROP_60 | DROP_90 | DROP_1D2 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | DRAGON | IM_COLD
S:1_IN_11 | 
S:SCARE | 
S:BR_COLD
D:It has a form that legends are made of.  Its still-tender scales are a 
D:frosty white in hue.  Icy blasts of cold air come from it as it breathes.

N:316:Young green dragon
G:d:g
I:110:27d10:20:60:70
W:29:1:0:290
B:CLAW:HURT:1d4
B:CLAW:HURT:1d4
B:BITE:HURT:1d6
F:FORCE_SLEEP | FORCE_MAXHP | 
F:DROP_60 | DROP_90 | DROP_1D2 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | DRAGON | IM_POIS
S:1_IN_11 | 
S:SCARE | 
S:BR_POIS
D:It has a form that legends are made of.  Its still-tender scales are a 
D:deep green in hue.  Foul gas seeps through its scales.

N:317:Young bronze dragon
G:d:U
I:110:27d10:20:63:150
W:29:3:0:310
B:CLAW:HURT:1d4
B:CLAW:HURT:1d4
B:BITE:HURT:1d6
F:FORCE_SLEEP | FORCE_MAXHP | 
F:DROP_60 | DROP_90 | DROP_2D2 | 
F:OPEN_DOOR | BASH_DOOR | 
F:DRAGON | NO_CONF | NO_SLEEP
S:1_IN_11 | 
S:SCARE | 
S:BR_CONF
D:It has a form that legends are made of.  Its still-tender scales are a 
D:rich bronze hue, and its shape masks its true form.

N:318:Mithril golem
G:g:B
I:110:80d15:12:100:10
W:30:4:0:500
B:HIT:HURT:3d8
B:HIT:HURT:3d8
B:HIT:HURT:5d5
B:HIT:HURT:5d5
F:ONLY_GOLD | DROP_2D2 | 
F:EMPTY_MIND | COLD_BLOOD | BASH_DOOR | 
F:IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:It is a massive statue of purest mithril.  It looks expensive!

N:319:Shadow drake
G:d:D
I:110:20d10:25:50:30
W:30:2:0:700
B:BITE:COLD:1d6
B:BITE:COLD:1d6
B:BITE:COLD:1d6
F:FORCE_SLEEP | RAND_25 | 
F:ONLY_ITEM | DROP_2D2 | 
F:TAKE_ITEM | INVISIBLE | OPEN_DOOR | BASH_DOOR | 
F:ANIMAL | EVIL | DRAGON | IM_COLD
S:1_IN_6 | 
S:HASTE | SLOW | CONF | SCARE | DARKNESS
D:It is a dragon-like form wrapped in shadow.  Glowing red eyes shine out in 
D:the dark.

N:320:Skeleton troll
G:s:w
I:110:20d10:20:55:20
W:30:1:0:225
B:HIT:HURT:1d6
B:HIT:HURT:1d6
B:BITE:HURT:3d4
F:EMPTY_MIND | COLD_BLOOD | OPEN_DOOR | BASH_DOOR | 
F:EVIL | TROLL | UNDEAD | 
F:IM_COLD | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:It is a troll skeleton animated by dark dweomers.

N:321:Manticore
G:H:y
I:120:25d10:12:15:10
W:30:2:0:300
B:HIT:HURT:3d4
B:HIT:HURT:3d4
B:HIT:HURT:3d4
B:HIT:HURT:3d4
F:FORCE_SLEEP | FORCE_MAXHP | 
F:BASH_DOOR | 
F:EVIL
S:1_IN_5 | 
S:ARROW_4
D:It is a winged lion's body with a human torso and a tail covered in 
D:vicious spikes.

N:322:Giant blue ant
G:a:b
I:110:8d8:10:50:60
W:30:2:0:80
B:BITE:ELEC:5d5
F:RAND_25 | 
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL | IM_ELEC
D:It is a giant ant that crackles with energy.

N:323:Giant army ant
G:a:o
I:120:19d6:10:40:40
W:30:3:0:90
B:BITE:HURT:2d12
F:RAND_25 | KILL_BODY | FRIENDS | 
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL
D:An armoured form moving with purpose.  Powerful on its own, flee when 
D:hordes of them march.

N:324:Grave wight
G:W:b
I:110:12d10:20:50:30
W:30:1:0:325
B:HIT:HURT:1d7
B:HIT:HURT:1d7
B:TOUCH:EXP_20
F:FORCE_SLEEP | RAND_25 | 
F:ONLY_ITEM | DROP_1D2 | 
F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR | 
F:EVIL | UNDEAD | 
F:IM_COLD | IM_POIS | HURT_LITE | NO_CONF | NO_SLEEP
S:1_IN_8 | 
S:SCARE | CAUSE_3 | DARKNESS
D:It is a ghostly form with eyes that haunt you.

N:325:Killer slicer beetle
G:K:y
I:110:22d10:14:60:30
W:30:2:0:200
B:BITE:HURT:5d8
B:BITE:HURT:5d8
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL
D:It is a beetle with deadly sharp cutting mandibles and a rock-hard 
D:carapace.

N:326:Ghost
G:G:w
I:120:13d8:20:30:10
W:31:1:0:350
B:WAIL:TERRIFY
B:TOUCH:EXP_20
B:CLAW:LOSE_INT:1d6
B:CLAW:LOSE_WIS:1d6
F:FORCE_SLEEP | RAND_25 | DROP_60 | DROP_1D2 | 
F:INVISIBLE | COLD_BLOOD | TAKE_ITEM | PASS_WALL | 
F:EVIL | UNDEAD | IM_COLD | 
F:IM_POIS | NO_CONF | NO_SLEEP
S:1_IN_15 | 
S:BLIND | HOLD | DRAIN_MANA
D:You don't believe in them.

N:327:Death watch beetle
G:K:D
I:110:25d12:16:60:30
W:31:3:0:190
B:BITE:HURT:5d4
B:WAIL:TERRIFY:5d6
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL
D:It is a giant beetle that produces a chilling sound.

N:328:Ogre shaman
G:O:o
I:110:14d10:20:55:30
W:32:2:0:250
B:HIT:HURT:3d6
B:HIT:HURT:3d6
B:HIT:HURT:3d6
F:FORCE_SLEEP | 
F:ONLY_ITEM | DROP_90 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | GIANT
S:1_IN_5 | 
S:TPORT | HOLD | SCARE | CAUSE_2 | TRAPS | BO_FIRE | 
S:S_MONSTER
D:It is an ogre wrapped in furs and covered in grotesque body paints.

N:329:Nexus quylthulg
G:Q:R
I:110:10d12:10:1:0
W:32:1:0:300
F:FORCE_SLEEP | NEVER_MOVE | NEVER_BLOW | 
F:INVISIBLE | EMPTY_MIND | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_1 | 
S:BLINK | TELE_AWAY
D:It is a very unstable, strange pulsing mound of flesh.

N:330:The Black Lady
G:p:D
I:110:12d100:8:80:80
W:32:3:0:1200
B:HIT:HURT:2d10
B:HIT:POISON:2d5
B:HIT:LOSE_STR:1d4
B:HIT:POISON:2d5
F:UNIQUE | FEMALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_1D2 | DROP_2D2 | DROP_GOOD | 
F:SMART | BASH_DOOR | 
F:EVIL | HURT_LITE | NO_CONF | NO_SLEEP
S:1_IN_2 | 
S:HEAL | BLIND | SLOW | CONF | SCARE | CAUSE_3 | CAUSE_4 | 
S:TRAPS | 
D:She is the evil form of Chibi-Usa, filled by the dark power of the 
D:wise man.  Now all she desires is vengence and death to all those 
D:who have wronged her.

N:331:Ninja
G:p:y
I:120:13d12:20:60:10
W:32:2:0:300
B:HIT:POISON:3d4
B:HIT:LOSE_STR:3d4
B:HIT:LOSE_STR:3d4
F:MALE | 
F:DROP_1D2 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | NO_CONF | NO_SLEEP
D:A humanoid clothed in black who moves with blinding speed.

N:332:Memory moss
G:,:r
I:110:1d2:30:1:5
W:32:3:0:150
B:HIT:CONFUSE:1d4
B:HIT:CONFUSE:1d4
F:FORCE_SLEEP | NEVER_MOVE | 
F:STUPID | EMPTY_MIND | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_6 | 
S:FORGET
D:A mass of green vegetation.  You don't remember seeing anything like it 
D:before.

N:333:Storm giant
G:P:B
I:110:38d10:20:60:40
W:32:1:0:1500
B:HIT:ELEC:3d8
B:HIT:ELEC:3d8
B:HIT:ELEC:3d8
F:FORCE_SLEEP | FORCE_MAXHP | DROP_1D2 | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | 
F:EVIL | GIANT | IM_COLD | IM_ELEC
S:1_IN_8 | 
S:BLINK | TELE_TO | CONF | SCARE | BO_ELEC | BA_ELEC
D:It is a twenty-five foot tall giant wreathed in lighting.

N:334:Cave troll
G:T:u
I:110:24d12:20:50:50
W:33:1:0:350
B:HIT:HURT:3d5
B:HIT:HURT:1d8
B:HIT:HURT:1d8
B:HIT:HURT:1d8
F:MALE | 
F:FRIENDS | DROP_60 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | TROLL | IM_POIS | HURT_LITE
D:He is a vicious monster, feared for his ferocity.

N:335:Half-troll
G:T:U
I:110:25d14:20:50:50
W:33:2:0:300
B:CLAW:HURT:1d5
B:CLAW:HURT:1d5
B:CLAW:HURT:1d5
B:BITE:HURT:2d6
F:MALE | 
F:FRIENDS | 
F:ONLY_ITEM | DROP_90 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | TROLL | IM_POIS
D:A huge, ugly, half-human in search of plunder.

N:336:Mystic
G:p:o
I:120:35d10:30:50:5
W:33:3:0:500
B:KICK:HURT:10d2
B:KICK:HURT:10d2
B:KICK:HURT:10d2
B:KICK:HURT:10d2
F:MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_1D2 | 
F:INVISIBLE | OPEN_DOOR | BASH_DOOR | 
F:IM_ACID | IM_POIS | NO_CONF | NO_SLEEP
S:1_IN_6 | 
S:HEAL | 
S:S_SPIDER
D:An adept at unarmed combat, the mystic strikes with stunning power.  He 
D:can summon help from nature and is able to focus his power to ease any 
D:pain.

N:337:Barrow wight
G:W:v
I:110:15d10:20:40:10
W:33:3:0:375
B:HIT:HURT:1d8
B:HIT:HURT:1d8
B:TOUCH:EXP_40
F:FORCE_SLEEP | FRIENDS | DROP_60 | 
F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR | 
F:EVIL | UNDEAD | IM_COLD | IM_POIS | HURT_LITE | NO_CONF | NO_SLEEP
S:1_IN_8 | 
S:HOLD | SCARE | CAUSE_2 | DARKNESS
D:It is a ghostly nightmare of a entity.

N:338:Giant skeleton troll
G:s:w
I:110:45d10:20:50:20
W:33:1:0:325
B:HIT:HURT:1d9
B:HIT:HURT:1d9
B:BITE:HURT:1d5
B:BITE:HURT:1d5
F:FORCE_MAXHP | 
F:EMPTY_MIND | COLD_BLOOD | OPEN_DOOR | BASH_DOOR | 
F:EVIL | TROLL | UNDEAD | 
F:IM_COLD | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:It is the animated form of a massive troll.

N:339:Chaos drake
G:d:v
I:110:50d10:25:100:30
W:33:3:0:700
B:CLAW:HURT:1d8
B:CLAW:HURT:1d8
B:BITE:HURT:2d6
F:ATTR_MULTI | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_2D2 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | DRAGON | 
F:IM_FIRE | NO_CONF | NO_SLEEP
S:1_IN_6 | 
S:SLOW | CONF | SCARE | 
S:BR_DISE | BR_CHAO
D:A dragon twisted by the forces of chaos.  It seems first ugly, then fair, 
D:as its form shimmers and changes in front of your eyes.

N:340:Law drake
G:d:B
I:110:55d10:25:100:30
W:33:3:0:700
B:CLAW:HURT:1d8
B:CLAW:HURT:1d8
B:BITE:HURT:2d6
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_2D2 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | DRAGON | 
F:IM_COLD | NO_CONF | NO_SLEEP
S:1_IN_6 | 
S:SLOW | CONF | SCARE | 
S:BR_SOUN | BR_SHAR
D:This dragon is clever and cunning.  It laughs at your puny efforts to 
D:disturb it.

N:341:Balance drake
G:d:v
I:110:60d10:25:100:30
W:33:3:0:700
B:CLAW:HURT:1d8
B:CLAW:HURT:1d8
B:BITE:HURT:2d6
F:ATTR_MULTI | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_2D2 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | DRAGON | 
F:IM_FIRE | IM_COLD | NO_CONF | NO_SLEEP
S:1_IN_6 | 
S:SLOW | CONF | SCARE | 
S:BR_SOUN | BR_SHAR | BR_DISE | BR_CHAO
D:A mighty dragon, the balance drake seeks to maintain the Cosmic Balance, 
D:and despises your feeble efforts to destroy evil.

N:342:Ethereal drake
G:d:o
I:110:45d10:25:100:15
W:33:3:0:700
B:CLAW:HURT:1d8
B:CLAW:HURT:1d8
B:BITE:HURT:2d6
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_2D2 | 
F:INVISIBLE | PASS_WALL | 
F:EVIL | DRAGON | NO_CONF | NO_SLEEP
S:1_IN_6 | 
S:SLOW | CONF | SCARE | 
S:BR_LITE | BR_DARK
D:A dragon of elemental power, with control over light and dark, the 
D:ethereal drake's eyes glare with white hatred from the shadows.

N:343:Tessai the Stone Troll
G:T:W
I:110:11d100:20:70:50
W:33:7:0:2000
B:HIT:HURT:5d5
B:BITE:HURT:2d10
B:BITE:HURT:2d3
F:UNIQUE | MALE | 
F:FORCE_MAXHP | 
F:ESCORT | 
F:ONLY_ITEM | DROP_1D2 | DROP_GOOD | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | 
F:EVIL | TROLL | IM_COLD | IM_POIS | HURT_LITE | HURT_ROCK
D:Big, brawny, powerful, and wields a huge boomerang like blade.  He also 
D:enjoys killing poeple and raping women.

N:344:Yun, the Wind Gust Dragon
G:p:B
I:140:9d100:20:70:50
W:33:7:0:2000
B:PUNCH:HURT:2d5
B:KICK:HURT:1d5
F:UNIQUE | MALE | 
F:FORCE_MAXHP | 
F:ONLY_ITEM | DROP_1D2 | DROP_GOOD | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR |
S:1_IN_3 | 
S:HASTE | 
D:Feared by many fighters all over the world, he is an elite martial artist 
D:with gang ties from Hong-Kong.  He has been trained by such legends as K.O. 
D:Mester, and Ken.  Master of the Genei Jin technique, he is feared for his 
D:quick strikes and juggle comboes.

N:345:Deedlit, the Elf
G:h:U
I:110:11d100:20:70:50
W:33:7:0:2000
B:HIT:HURT:1d3
F:UNIQUE | FEMALE |
F:FORCE_MAXHP | SMART |
F:ONLY_ITEM | DROP_1D2 | DROP_GOOD | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | 
S:1_IN_4 |
S:BO_ACID | BO_FIRE | BO_COLD | BO_ELEC | BO_POIS |  
S:CONF |
D:A very powerful elven mage.

N:346:Shade
G:G:D
I:120:14d20:20:30:10
W:33:3:0:350
B:WAIL:TERRIFY
B:TOUCH:EXP_40
B:CLAW:LOSE_INT:1d10
F:FORCE_SLEEP | RAND_25 | 
F:ONLY_ITEM | DROP_90 | DROP_2D2 | 
F:INVISIBLE | COLD_BLOOD | TAKE_ITEM | PASS_WALL | 
F:EVIL | UNDEAD | IM_COLD | IM_POIS | 
F:NO_CONF | NO_SLEEP
S:1_IN_15 | 
S:BLIND | HOLD | DRAIN_MANA | FORGET
D:A shadowy form clutches at you from the darkness.  A powerful undead with 
D:a deadly touch.

N:347:Spectre
G:G:U
I:120:14d20:20:30:10
W:33:3:0:350
B:WAIL:TERRIFY
B:TOUCH:EXP_40
B:CLAW:LOSE_WIS:5d5
F:FORCE_SLEEP | RAND_25 | 
F:ONLY_ITEM | DROP_90 | DROP_2D2 | 
F:INVISIBLE | COLD_BLOOD | TAKE_ITEM | PASS_WALL | 
F:EVIL | UNDEAD | IM_COLD | IM_POIS | 
F:NO_CONF | NO_SLEEP
S:1_IN_15 | 
S:BLIND | HOLD | DRAIN_MANA | FORGET
D:A phantasmal shrieking spirit.  Its wail drives the intense cold of pure 
D:evil deep within your body.

N:348:Water troll
G:T:s
I:110:36d10:20:50:50
W:33:1:0:420
B:HIT:HURT:1d9
B:HIT:HURT:1d9
B:HIT:HURT:2d2
B:HIT:HURT:2d2
F:MALE | 
F:FORCE_MAXHP | 
F:FRIENDS | DROP_60 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | TROLL | IM_COLD | IM_POIS | HURT_LITE
D:He is a troll that reeks of brine.

N:349:Fire elemental
G:E:r
I:110:30d8:12:50:50
W:33:2:0:350
B:HIT:FIRE:4d6
B:HIT:FIRE:4d6
F:FORCE_SLEEP | RAND_25 | 
F:EMPTY_MIND | 
F:KILL_ITEM | KILL_BODY | BASH_DOOR | POWERFUL | 
F:EVIL | IM_FIRE | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_6 | 
S:BO_FIRE
D:It is a towering inferno of flames.

N:350:Astral Deva
G:A:G
I:120:45d10:30:68:255
W:33:6:0:400
B:HIT:HURT:4d3
B:HIT:HURT:3d8
B:HIT:HURT:4d3
B:HIT:HURT:3d8
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_1D2 | DROP_2D2 | 
F:SMART | TAKE_ITEM | OPEN_DOOR | BASH_DOOR | POWERFUL | MOVE_BODY | 
F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | 
F:NO_CONF | NO_SLEEP
S:1_IN_3 | 
S:HEAL | HASTE | BLIND | SCARE | MIND_BLAST | BO_FIRE | 
S:S_MONSTERS
D:It is an angel moving very quickly, wielding a holy war hammer and casting 
D:a volley of powerful spells in your direction.

N:351:Water elemental
G:E:s
I:110:25d8:12:40:50
W:33:2:0:325
B:HIT:HURT:1d10
B:HIT:HURT:1d10
B:HIT:HURT:1d10
F:FORCE_SLEEP | RAND_25 | 
F:EMPTY_MIND | COLD_BLOOD | 
F:KILL_BODY | KILL_ITEM | BASH_DOOR | POWERFUL | 
F:EVIL | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_6 | 
S:BO_COLD
D:It is a towering tempest of water.

N:352:Invisible stalker
G:E:y
I:130:19d12:20:46:20
W:34:3:0:300
B:HIT:HURT:1d6
B:HIT:HURT:1d6
B:HIT:HURT:1d6
F:RAND_50 | 
F:EMPTY_MIND | INVISIBLE | COLD_BLOOD | 
F:OPEN_DOOR | BASH_DOOR | POWERFUL | 
F:EVIL | IM_ELEC | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:It is impossible to define its form but its violence is legendary.

N:353:Carrion crawler
G:c:o
I:110:20d12:15:40:10
W:34:2:0:100
B:STING:PARALYZE:2d6
B:STING:PARALYZE:2d6
F:RAND_25 | FRIENDS | 
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL | IM_POIS
D:A hideous centipede covered in slime and with glowing tentacles around its 
D:head.

N:354:Space Pirate
G:p:B
I:100:20d10:20:30:40
W:34:2:0:350
B:HIT:HURT:3d8
B:HIT:HURT:4d4
B:HIT:EAT_GOLD:5d4
B:HIT:EAT_ITEM:5d5
F:MALE | 
F:DROP_90 | DROP_2D2 | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | 
F:EVIL
D:He is full of angst, and enjoys mugging people.

N:355:Ky-Kiske
G:p:b
I:120:10d100:20:90:40
W:34:5:0:1200
B:HIT:HURT:10d5
B:HIT:HURT:10d5
B:HIT:HURT:10d5
B:HIT:HURT:10d5
F:UNIQUE | MALE | 
F:FORCE_MAXHP | 
F:ONLY_ITEM | DROP_2D2 | DROP_GOOD | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | 
S:1_IN_3 | 
S:MISSILE
D:A very talented swordsman who collects teacups and has issues with  
D:people who don't agree to his way of living.  

N:356:Lich
G:L:o
I:110:30d10:20:60:60
W:34:3:0:800
B:TOUCH:EXP_40
B:TOUCH:UN_POWER
B:TOUCH:LOSE_DEX:2d8
B:TOUCH:LOSE_DEX:2d8
F:FORCE_SLEEP | FORCE_MAXHP | DROP_1D2 | 
F:SMART | COLD_BLOOD | OPEN_DOOR | BASH_DOOR | 
F:EVIL | UNDEAD | IM_COLD | IM_POIS | HURT_LITE | 
F:NO_CONF | NO_SLEEP
S:1_IN_4 | 
S:BLINK | TELE_TO | TELE_AWAY | BLIND | HOLD | SLOW | SCARE | 
S:CAUSE_3 | DRAIN_MANA | BRAIN_SMASH
D:It is a skeletal form dressed in robes.  It radiates vastly evil power.

N:357:Master vampire
G:V:g
I:110:34d10:20:60:10
W:34:3:0:750
B:HIT:HURT:1d6
B:HIT:HURT:1d6
B:BITE:EXP_40:1d4
B:BITE:EXP_40:1d4
F:FORCE_SLEEP | FORCE_MAXHP | 
F:DROP_4D2 | 
F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR | REGENERATE | 
F:EVIL | UNDEAD | IM_COLD | IM_POIS | HURT_LITE | NO_CONF | NO_SLEEP
S:1_IN_6 | 
S:TELE_TO | HOLD | CONF | SCARE | CAUSE_3 | MIND_BLAST | FORGET | 
S:DARKNESS | BO_NETH
D:It is a humanoid form dressed in robes.  Power emanates from its chilling 
D:frame.

N:358:Giant grey scorpion
G:S:s
I:120:18d20:12:50:40
W:34:4:0:275
B:BITE:HURT:1d6
B:STING:POISON:1d4
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL
D:It is a giant grey scorpion.  It looks poisonous.

N:359:Earth elemental
G:E:u
I:100:30d10:10:60:90
W:34:2:0:375
B:HIT:HURT:4d6
B:HIT:HURT:4d6
B:HIT:HURT:4d6
F:FORCE_SLEEP | 
F:EMPTY_MIND | COLD_BLOOD | 
F:KILL_ITEM | KILL_BODY | PASS_WALL | POWERFUL | 
F:EVIL | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | HURT_ROCK | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_8 | 
S:BO_ACID
D:It is a towering form composed of rock with fists of awesome power.

N:360:Air elemental
G:E:B
I:120:30d5:12:50:50
W:34:2:0:390
B:HIT:HURT:1d10
B:HIT:CONFUSE:1d4
B:HIT:HURT:1d10
F:FORCE_SLEEP | RAND_25 | 
F:EMPTY_MIND | COLD_BLOOD | 
F:KILL_BODY | KILL_ITEM | BASH_DOOR | POWERFUL | 
F:EVIL | IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_8 | 
S:BO_ELEC
D:It is a towering tornado of winds.

N:361:Hell hound
G:C:r
I:120:40d10:25:80:0
W:35:3:0:600
B:BITE:FIRE:3d12
B:BITE:FIRE:3d12
B:BITE:FIRE:3d12
F:FORCE_SLEEP | FORCE_MAXHP | 
F:RAND_25 | 
F:BASH_DOOR | MOVE_BODY | 
F:ANIMAL | EVIL | IM_FIRE
S:1_IN_5 | 
S:BR_FIRE
D:It is a giant dog that glows with heat.  Flames pour from its nostrils.

N:362:Eog golem
G:g:u
I:100:100d20:12:125:10
W:35:4:0:1200
B:HIT:HURT:8d6
B:HIT:HURT:8d6
B:HIT:HURT:6d6
B:HIT:HURT:6d6
F:ONLY_GOLD | DROP_2D2 | 
F:EMPTY_MIND | COLD_BLOOD | BASH_DOOR | 
F:IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:It is a massive deep brown statue, striding towards you with an 
D:all-too-familiar purpose.  Your magic surprisingly feels much less 
D:powerful now.

N:363:Olog
G:T:y
I:110:42d10:20:50:50
W:35:1:0:400
B:HIT:HURT:1d12
B:HIT:HURT:1d12
B:BITE:HURT:2d3
B:BITE:HURT:2d3
F:FORCE_MAXHP | OPEN_DOOR | FRIENDS | DROP_60 | 
F:SMART | BASH_DOOR | 
F:EVIL | TROLL | IM_POIS
D:It is a massive intelligent troll with needle sharp fangs.

N:364:Dagashi
G:p:y
I:120:13d25:20:70:10
W:35:4:0:500
B:HIT:POISON:3d4
B:HIT:LOSE_STR:3d4
B:HIT:LOSE_STR:3d4
B:HIT:POISON:3d4
F:MALE | 
F:DROP_1D2 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | NO_CONF | NO_SLEEP
D:A human warrior, moving with lightning speed.

N:365:Gravity hound
G:Z:W
I:110:35d10:30:30:0
W:35:2:0:500
B:BITE:HURT:2d12
B:BITE:HURT:2d12
B:BITE:HURT:2d12
B:CLAW:HURT:3d3
F:FORCE_SLEEP | FRIENDS | 
F:BASH_DOOR | 
F:ANIMAL | NO_CONF | NO_SLEEP | 
S:1_IN_5 | 
S:BR_GRAV
D:Unfettered by the usual constraints of gravity, these unnatural creatures 
D:are walking on the walls and even the ceiling!  The earth suddenly feels 
D:rather less solid as you see gravity warp all round the monsters.

N:366:Ganymede Rock Lobster
G:j:b
I:120:40d10:12:18:1
W:35:5:0:36
B:BITE:POISON:1d10
B:BITE:POISON:1d10
B:BITE:POISON:1d10
B:BITE:POISON:1d10
F:FORCE_MAXHP | TAKE_ITEM | COLD_BLOOD | 
F:DROP_1D2 | DROP_4D2 | 
F:STUPID | EMPTY_MIND | OPEN_DOOR | BASH_DOOR | 
F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | 
F:NO_FEAR | NO_CONF | NO_SLEEP
D:When you neglect lobsters in the fridge for too long, they tend to mutate
D:into big, funny blobs with poisonous bites.

N:367:Inertia hound
G:Z:W
I:110:35d10:30:30:0
W:35:2:0:500
B:BITE:HURT:2d12
B:BITE:HURT:2d12
B:BITE:HURT:2d12
B:CLAW:HURT:3d3
F:FORCE_SLEEP | FRIENDS | 
F:BASH_DOOR | 
F:ANIMAL | NO_CONF | NO_SLEEP
S:1_IN_5 | 
S:BR_INER
D:Bizarrely, this hound seems to be hardly moving at all, yet it approaches 
D:you with deadly menace.  It makes you tired just to look at it.

N:368:Impact hound
G:Z:u
I:110:35d10:30:30:0
W:35:2:0:500
B:BITE:HURT:2d12
B:BITE:HURT:2d12
B:BITE:HURT:2d12
B:CLAW:HURT:3d3
F:FORCE_SLEEP | 
F:FRIENDS | 
F:BASH_DOOR | 
F:ANIMAL | NO_CONF | NO_SLEEP
S:1_IN_8 | 
S:BR_WALL
D:A deep brown shape is visible before you, its canine form strikes you with 
D:an almost physical force.  The dungeon floor buckles as if struck by a 
D:powerful blow as it stalks towards you.

N:369:Dread
G:G:o
I:120:25d20:20:30:10
W:35:2:0:600
B:HIT:HURT:6d6
B:HIT:HURT:6d6
B:HIT:LOSE_STR:3d4
F:FORCE_SLEEP | RAND_25 | 
F:ONLY_ITEM | DROP_60 | DROP_2D2 | 
F:TAKE_ITEM | INVISIBLE | COLD_BLOOD | PASS_WALL | 
F:EVIL | UNDEAD | IM_COLD | IM_POIS | 
F:NO_CONF | NO_SLEEP
S:1_IN_15 | 
S:BLIND | HOLD | CONF | DRAIN_MANA | BO_NETH
D:It is a form that screams its presence against the eye.  Death incarnate, 
D:its hideous black body seems to struggle against reality as the universe 
D:itself struggles to banish it.

N:370:Ooze elemental
G:E:g
I:110:13d10:10:80:90
W:35:3:0:300
B:TOUCH:ACID:1d10
B:TOUCH:ACID:1d10
B:TOUCH:ACID:1d10
F:FORCE_SLEEP | 
F:EMPTY_MIND | COLD_BLOOD | 
F:KILL_ITEM | KILL_BODY | BASH_DOOR | POWERFUL | 
F:EVIL | IM_ACID | IM_FIRE | 
F:IM_COLD | IM_ELEC | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_5 | 
S:BO_ACID | BA_ACID
D:It is a towering mass of filth, an eyesore of ooze.

N:371:Smoke elemental
G:E:R
I:120:15d10:10:80:90
W:35:3:0:375
B:BITE:HURT:2d6
B:BITE:HURT:2d6
F:FORCE_SLEEP | 
F:EMPTY_MIND | 
F:KILL_ITEM | KILL_BODY | BASH_DOOR | POWERFUL | 
F:EVIL | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_5 | 
S:DARKNESS | BO_FIRE
D:It is a towering blackened form, crackling with heat.

N:372:Young black dragon
G:d:s
I:110:25d10:20:60:50
W:35:1:0:620
B:CLAW:HURT:1d5
B:CLAW:HURT:1d5
B:BITE:HURT:1d6
F:FORCE_SLEEP | FORCE_MAXHP | 
F:DROP_60 | DROP_90 | DROP_1D2 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | DRAGON | IM_ACID
S:1_IN_11 | 
S:SCARE | 
S:BR_ACID
D:It has a form that legends are made of.  Its still-tender scales are a 
D:darkest black hue.  Acid drips from its body.

N:373:Mumak
G:q:s
I:110:90d10:20:55:100
W:35:3:0:2100
B:BUTT:HURT:4d6
B:BUTT:HURT:4d6
B:CRUSH:HURT:4d4
F:BASH_DOOR | 
F:ANIMAL
D:A massive elephantine form with eyes twisted by madness.

N:374:Giant red ant
G:a:r
I:110:20d10:14:49:40
W:35:1:0:350
B:BITE:FIRE:3d12
B:BITE:FIRE:3d12
F:FORCE_MAXHP | KILL_BODY | FRIENDS | 
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL | IM_FIRE
D:A giant ant covered in shaggy fur.  Its powerful jaws glow with heat.

N:375:Mature white dragon
G:d:w
I:110:40d10:20:65:70
W:35:1:0:1000
B:CLAW:HURT:1d8
B:CLAW:HURT:1d8
B:BITE:HURT:2d8
F:FORCE_SLEEP | FORCE_MAXHP | DROP_2D2 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | DRAGON | IM_COLD | NO_CONF | NO_SLEEP
S:1_IN_10 | 
S:SCARE | 
S:BR_COLD
D:A large dragon, scales gleaming bright white.

N:376:Xorn
G:X:u
I:110:16d10:20:80:10
W:36:2:0:650
B:HIT:HURT:1d6
B:HIT:HURT:1d6
B:HIT:HURT:1d6
B:HIT:HURT:1d6
F:FORCE_MAXHP | 
F:EMPTY_MIND | COLD_BLOOD | 
F:KILL_ITEM | PASS_WALL | 
F:IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | 
F:HURT_ROCK | NO_CONF | NO_SLEEP
D:A huge creature of the element Earth.  Able to merge with its element, it 
D:has four huge arms protruding from its enormous torso.

N:377:Shadow
G:G:D
I:120:10d20:30:30:20
W:36:3:0:400
B:TOUCH:EXP_80
B:TOUCH:EXP_40
B:CLAW:LOSE_INT:1d10
B:CLAW:LOSE_WIS:1d10
F:FORCE_SLEEP | 
F:ONLY_ITEM | DROP_1D2 | 
F:INVISIBLE | COLD_BLOOD | PASS_WALL | 
F:EVIL | UNDEAD | IM_COLD | IM_POIS | NO_CONF | NO_SLEEP
S:1_IN_8 | 
S:TELE_TO | SLOW
D:A mighty spirit of darkness of vaguely humanoid form.  Razor-edged claws 
D:reach out to end your life as it glides towards you, seeking to suck the 
D:energy from your soul to feed its power.

N:378:Phantom
G:G:v
I:120:20d25:30:30:20
W:36:3:0:400
B:TOUCH:EXP_80
B:TOUCH:EXP_40
B:CLAW:LOSE_INT:1d10
B:CLAW:LOSE_WIS:1d10
F:FORCE_SLEEP | 
F:ONLY_ITEM | DROP_1D2 | 
F:INVISIBLE | COLD_BLOOD | PASS_WALL | 
F:EVIL | UNDEAD | IM_COLD | IM_POIS | NO_CONF | NO_SLEEP
S:1_IN_5 | 
S:FORGET
D:An unholy creature of darkness, the aura emanating from this evil being 
D:saps your very soul.

N:379:Grey wraith
G:W:s
I:110:19d10:20:50:10
W:36:1:0:700
B:HIT:HURT:1d10
B:HIT:HURT:1d10
B:TOUCH:EXP_40
F:FORCE_SLEEP | FORCE_MAXHP | 
F:DROP_60 | DROP_90 | 
F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR | 
F:EVIL | UNDEAD | HURT_LITE | IM_COLD | IM_POIS | NO_CONF | NO_SLEEP
S:1_IN_7 | 
S:HOLD | SCARE | CAUSE_3 | DARKNESS
D:A tangible but ghostly form, made of grey fog.  The air around it feels 
D:deathly cold.

N:380:Young multi-hued dragon
G:d:v
I:110:32d10:20:60:50
W:36:1:0:1320
B:CLAW:HURT:1d9
B:CLAW:HURT:1d9
B:BITE:HURT:2d10
F:ATTR_MULTI | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:DROP_1D2 | DROP_4D2 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | DRAGON | IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | 
F:IM_POIS | NO_CONF | NO_SLEEP
S:1_IN_5 | 
S:SCARE | 
S:BR_ACID | BR_FIRE | BR_COLD | BR_ELEC | BR_POIS
D:It has a form that legends are made of.  Beautiful scales of shimmering 
D:and magical colours cover it.

N:381:Colossus
G:g:G
I:100:30d100:12:150:10
W:36:4:0:850
B:HIT:HURT:10d10
B:HIT:HURT:10d10
B:HIT:HURT:6d6
B:HIT:HURT:6d6
F:FORCE_MAXHP | 
F:EMPTY_MIND | COLD_BLOOD | BASH_DOOR | 
F:IM_FIRE | IM_COLD | IM_ELEC | 
F:IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:An enormous construct resembling a titan made from stone.  It strides 
D:purposefully towards you, swinging its slow fists with earth-shattering 
D:power.

N:382:Young gold dragon
G:d:y
I:110:30d10:20:63:150
W:36:2:0:950
B:CLAW:HURT:1d8
B:CLAW:HURT:1d8
B:BITE:HURT:2d8
F:FORCE_SLEEP | FORCE_MAXHP | 
F:DROP_60 | DROP_90 | DROP_2D2 | 
F:OPEN_DOOR | BASH_DOOR | 
F:DRAGON
S:1_IN_11 | 
S:SCARE | 
S:BR_SOUN
D:It has a form that legends are made of.  Its still-tender scales are a 
D:tarnished gold hue, and light is reflected from its form.

N:383:Michael Yamada
G:h:D
I:120:15d100:20:70:50
W:36:5:0:5000
B:HIT:HURT:6d6
B:HIT:HURT:2d10
B:HIT:HURT:2d3
B:SPIT:TERRIFY:1d1
F:UNIQUE | MALE | 
F:FORCE_MAXHP | 
F:ESCORT | 
F:ONLY_ITEM | DROP_2D2 | DROP_GOOD | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | 
S:1_IN_9 |
S:SCARE | MISSILE 
D:A french womanizer who likes to throw lots of roses and vines.

N:384:Mature blue dragon
G:d:b
I:110:40d10:20:75:70
W:36:1:0:1200
B:CLAW:HURT:1d8
B:CLAW:HURT:1d8
B:BITE:HURT:2d10
F:FORCE_SLEEP | FORCE_MAXHP | 
F:DROP_60 | DROP_90 | DROP_2D2 | 
F:BASH_DOOR | 
F:EVIL | DRAGON | IM_ELEC | NO_CONF | NO_SLEEP
S:1_IN_9 | 
S:SCARE | 
S:BR_ELEC
D:A large dragon, scales tinted deep blue.

N:385:Mature green dragon
G:d:g
I:110:40d10:20:70:70
W:36:1:0:1100
B:CLAW:HURT:1d4
B:CLAW:HURT:1d4
B:BITE:HURT:1d6
F:FORCE_SLEEP | FORCE_MAXHP | 
F:DROP_60 | DROP_90 | DROP_2D2 | 
F:BASH_DOOR | 
F:EVIL | DRAGON | IM_POIS | NO_CONF | NO_SLEEP
S:1_IN_9 | 
S:SCARE | 
S:BR_POIS
D:A large dragon, scales tinted deep green.

N:386:Mature bronze dragon
G:d:U
I:110:44d10:20:70:150
W:36:2:0:1300
B:CLAW:HURT:1d8
B:CLAW:HURT:1d8
B:BITE:HURT:2d10
F:FORCE_SLEEP | FORCE_MAXHP | 
F:DROP_1D2 | DROP_4D2 | 
F:BASH_DOOR | 
F:DRAGON | NO_CONF | NO_SLEEP
S:1_IN_9 | 
S:CONF | SCARE | 
S:BR_CONF
D:A large dragon with scales of rich bronze.

N:387:Charmeleon
G:d:r
I:110:29d10:20:63:50
W:36:1:0:640
B:CLAW:HURT:1d8
B:CLAW:HURT:1d8
B:BITE:HURT:2d8
F:FORCE_SLEEP | FORCE_MAXHP | 
F:DROP_60 | DROP_90 | DROP_1D2 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | DRAGON | IM_FIRE
S:1_IN_4 | 
S:SCARE | 
S:BR_FIRE
D:Fire type pokemon.  It is very hot headed by nature, so it constantly 
D:seeks opponents.  It calms down only when it wins.

N:388:Trapper
G:.:w
I:120:60d10:30:75:10
W:36:3:0:580
B:HIT:HURT:3d8
B:HIT:HURT:3d8
B:HIT:PARALYZE:15d1
B:HIT:PARALYZE:15d1
F:CHAR_CLEAR | ATTR_CLEAR | 
F:NEVER_MOVE | FORCE_MAXHP | 
F:INVISIBLE | EMPTY_MIND | COLD_BLOOD | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:A larger cousin of the lurker, this creature traps unsuspecting victims 
D:and paralyzes them, to be slowly digested later.

N:389:Bodak
G:u:r
I:110:35d10:10:68:90
W:36:2:0:750
B:HIT:FIRE:4d6
B:HIT:FIRE:4d6
B:GAZE:EXP_20
F:FORCE_SLEEP | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | 
F:EVIL | DEMON | IM_FIRE | IM_POIS | NO_CONF | NO_SLEEP
S:1_IN_4 | 
S:BO_FIRE | BA_FIRE | 
S:S_DEMON
D:It is a humanoid form composed of flames and hatred.

N:390:Ice elemental
G:E:w
I:110:35d10:10:60:90
W:36:2:0:650
B:BITE:COLD:1d3
B:HIT:HURT:4d6
B:BITE:COLD:1d3
F:FORCE_SLEEP | 
F:EMPTY_MIND | COLD_BLOOD | 
F:KILL_ITEM | KILL_BODY | BASH_DOOR | POWERFUL | 
F:EVIL | IM_COLD | IM_ELEC | 
F:IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_5 | 
S:BO_ICEE | BA_COLD
D:It is a towering glacier of ice.

N:391:Necromancer
G:p:R
I:110:28d10:20:50:10
W:36:2:0:630
B:HIT:HURT:2d6
B:HIT:HURT:2d6
F:MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_1D2 | 
F:SMART | OPEN_DOOR | BASH_DOOR | 
F:EVIL
S:1_IN_3 | 
S:HASTE | TPORT | TELE_TO | BLIND | HOLD | SCARE | CAUSE_3 | 
S:BO_NETH | 
S:S_UNDEAD
D:A gaunt figure, clothed in black robes.

N:392:Anubis, Dark Warlord of Cruelty
G:p:R
I:120:18d100:25:100:10
W:36:2:0:1200
B:HIT:HURT:6d6
B:HIT:HURT:6d6
B:HIT:HURT:3d8
B:HIT:HURT:3d8
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_2D2 | DROP_GOOD | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | 
F:NO_CONF | NO_SLEEP
S:1_IN_4 | 
S:TELE_TO | HOLD | SLOW |
S:S_MONSTERS
D:Anubis, Dark Warlord of Cruelty, the evil of the evil, he was the 
D:leader of Tulpa's warlord's, even though he's the youngest he still
D: posseses the greatest power of them all.



N:393:Demonologist
G:p:R
I:120:28d10:20:50:10
W:36:2:0:700
B:HIT:HURT:2d6
B:HIT:HURT:2d6
B:HIT:HURT:2d5
F:MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_1D2 | 
F:SMART | OPEN_DOOR | BASH_DOOR | 
F:EVIL
S:1_IN_2 | 
S:TPORT | HOLD | 
S:S_DEMON
D:A figure twisted by evil standing in robes of deepest crimson.

N:394:Mummified troll
G:z:w
I:110:19d10:20:50:50
W:37:1:0:420
B:HIT:HURT:2d6
B:HIT:HURT:2d6
F:FORCE_MAXHP | 
F:DROP_60 | 
F:EMPTY_MIND | COLD_BLOOD | OPEN_DOOR | BASH_DOOR | 
F:EVIL | TROLL | UNDEAD | IM_COLD | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:It is a massive figure clothed in wrappings.  You are wary of its massive 
D:fists.

N:395:The Queen Ant
G:a:D
I:120:15d100:30:100:10
W:37:2:0:1000
B:BITE:HURT:2d12
B:BITE:HURT:2d12
B:BITE:HURT:2d8
B:BITE:HURT:2d8
F:UNIQUE | FEMALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ESCORT | ESCORTS | 
F:ONLY_ITEM | DROP_2D2 | DROP_GOOD | 
F:WEIRD_MIND | OPEN_DOOR | BASH_DOOR | 
F:ANIMAL | NO_CONF | NO_SLEEP
S:1_IN_2 | 
S:S_ANT
D:She's upset because you hurt her children.

N:396:Will o' the wisp
G:E:W
I:130:20d10:30:150:0
W:37:4:0:500
B:HIT:HURT:1d9
B:HIT:HURT:1d9
B:HIT:HURT:1d9
B:HIT:HURT:1d9
F:FORCE_SLEEP | FORCE_MAXHP | RAND_50 | 
F:SMART | EMPTY_MIND | INVISIBLE | 
F:PASS_WALL | POWERFUL | 
F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_2 | 
S:BLINK | TPORT | CONF | CAUSE_2
D:A strange ball of glowing light.  It disappears and reappears and seems to 
D:draw you to it.  You seem somehow compelled to stand still and watch its 
D:strange dancing motion.

N:397:Magma elemental
G:E:r
I:110:35d10:10:70:90
W:37:2:0:950
B:HIT:FIRE:3d7
B:HIT:HURT:4d6
B:HIT:FIRE:3d7
F:FORCE_SLEEP | 
F:EMPTY_MIND | 
F:KILL_ITEM | KILL_BODY | PASS_WALL | POWERFUL | 
F:EVIL | IM_FIRE | IM_ELEC | 
F:IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_7 | 
S:BO_PLAS | BA_FIRE
D:It is a towering glowing form of molten hate.

N:398:Black pudding
G:j:D
I:110:40d10:12:18:1
W:37:5:0:36
B:TOUCH:ACID:1d10
B:TOUCH:ACID:1d10
B:TOUCH:ACID:1d10
B:TOUCH:ACID:1d10
F:FORCE_MAXHP | 
F:FRIENDS | 
F:DROP_60 | DROP_90 | DROP_1D2 | 
F:STUPID | EMPTY_MIND | COLD_BLOOD | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | 
F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:A lump of rotting black flesh that slurrrrrrrps across the dungeon floor.

N:399:Killer blue beetle
G:K:b
I:110:25d10:16:60:30
W:37:2:0:850
B:CLAW:ELEC:1d12
B:CLAW:ELEC:1d12
B:GAZE:PARALYZE
F:FORCE_MAXHP | 
F:WEIRD_MIND | BASH_DOOR | 
F:ANIMAL | IM_ELEC
D:It is a giant beetle, whose carapace shimmers with vibrant energies.

N:400:Nexus vortex
G:v:R
I:120:32d10:100:40:0
W:37:1:0:800
B:ENGULF:HURT:5d5
F:FORCE_SLEEP | 
F:RAND_50 | RAND_25 | 
F:EMPTY_MIND | BASH_DOOR | POWERFUL | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_6 | 
S:BR_NEXU
D:A maelstrom of potent magical energy.

N:401:Plasma vortex
G:v:r
I:120:32d10:100:40:0
W:37:1:0:800
B:ENGULF:FIRE:8d8
F:FORCE_SLEEP | 
F:RAND_50 | RAND_25 | 
F:EMPTY_MIND | BASH_DOOR | POWERFUL | 
F:IM_FIRE | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_6 | 
S:BR_PLAS
D:A whirlpool of intense flame, charring the stones at your feet.

N:402:Mature red dragon
G:d:r
I:110:48d10:20:80:30
W:37:1:0:1400
B:CLAW:HURT:1d4
B:CLAW:HURT:1d10
B:BITE:HURT:2d12
F:FORCE_SLEEP | FORCE_MAXHP | 
F:DROP_1D2 | DROP_4D2 | 
F:BASH_DOOR | 
F:EVIL | DRAGON | IM_FIRE | NO_CONF | NO_SLEEP
S:1_IN_9 | 
S:CONF | SCARE | 
S:BR_FIRE
D:A large dragon, scales tinted deep red.

N:403:Mature gold dragon
G:d:y
I:110:56d10:20:80:150
W:37:2:0:1500
B:CLAW:HURT:1d4
B:CLAW:HURT:1d10
B:BITE:HURT:2d12
F:FORCE_SLEEP | FORCE_MAXHP | 
F:DROP_1D2 | DROP_4D2 | 
F:BASH_DOOR | 
F:DRAGON | NO_CONF | NO_SLEEP
S:1_IN_9 | 
S:CONF | SCARE | 
S:BR_SOUN
D:A large dragon with scales of gleaming gold.

N:404:Crystal drake
G:d:v
I:120:50d10:25:100:30
W:37:2:0:1500
B:CLAW:HURT:1d4
B:CLAW:HURT:1d4
B:BITE:HURT:2d5
F:ATTR_MULTI | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_4D2 | 
F:INVISIBLE | OPEN_DOOR | BASH_DOOR | 
F:EVIL | DRAGON | IM_COLD | NO_CONF | NO_SLEEP
S:1_IN_6 | 
S:SLOW | CONF | SCARE | 
S:BR_SHAR
D:A dragon of strange crystalline form.  Light shines through it, dazzling 
D:your eyes with spectrums of colour.

N:405:Mature black dragon
G:d:s
I:110:46d10:20:55:30
W:37:1:0:1350
B:CLAW:HURT:1d8
B:CLAW:HURT:1d8
B:BITE:HURT:2d10
F:FORCE_SLEEP | FORCE_MAXHP | 
F:DROP_60 | DROP_90 | DROP_2D2 | 
F:BASH_DOOR | 
F:EVIL | DRAGON | IM_ACID | NO_CONF | NO_SLEEP
S:1_IN_9 | 
S:SCARE | 
S:BR_ACID
D:A large dragon, with scales of deepest black.

N:406:Mature multi-hued dragon
G:d:v
I:110:64d10:20:65:50
W:38:2:0:1700
B:CLAW:HURT:1d10
B:CLAW:HURT:1d10
B:BITE:HURT:2d12
F:ATTR_MULTI | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:DROP_3D2 | DROP_4D2 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | DRAGON | IM_ACID | IM_FIRE | IM_COLD | 
F:IM_ELEC | IM_POIS | NO_CONF | NO_SLEEP
S:1_IN_5 | 
S:BLIND | CONF | SCARE | 
S:BR_ACID | BR_FIRE | BR_COLD | BR_ELEC | BR_POIS
D:A large dragon, scales shimmering many colours.

N:407:Death knight
G:p:D
I:120:60d10:20:100:10
W:38:1:0:1000
B:HIT:HURT:6d6
B:HIT:HURT:5d5
B:HIT:HURT:5d5
F:FORCE_SLEEP | FORCE_MAXHP | SMART | 
F:ONLY_ITEM | DROP_1D2 | DROP_2D2 | 
F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR | 
F:EVIL | IM_COLD
S:1_IN_5 | 
S:BLIND | SCARE | CAUSE_3 | BO_NETH | 
S:S_MONSTERS
D:It is a humanoid form dressed in armour of an ancient form.  From beneath 
D:its helmet, eyes glow a baleful red and seem to pierce you like lances of 
D:fire.

N:408:Dan Hibiki
G:p:R
I:120:88d10:20:90:40
W:38:5:0:1600
B:HIT:HURT:5d5
B:INSULT
B:INSULT
B:INSULT
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_2D2 | DROP_GOOD | 
F:SMART | OPEN_DOOR | TAKE_ITEM | BASH_DOOR | 
S:1_IN_2 | 
S:HEAL | MISSILE | BO_FIRE 
D:A shoto wanna be with a pink gi, he strikes laughter everywhere he goes.  

N:409:Time vortex
G:v:B
I:130:32d10:100:40:0
W:38:4:0:900
B:ENGULF:HURT:5d5
F:FORCE_SLEEP | 
F:RAND_50 | RAND_25 | 
F:EMPTY_MIND | BASH_DOOR | POWERFUL | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_6 | 
S:BR_TIME
D:You haven't seen it yet.

N:410:Shimmering vortex
G:v:v
I:140:6d12:100:30:0
W:38:4:0:200
F:ATTR_MULTI | 
F:FORCE_SLEEP | NEVER_BLOW | 
F:RAND_50 | RAND_25 | 
F:EMPTY_MIND | BASH_DOOR | POWERFUL | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_4 | 
S:BR_LITE | SHRIEK
D:A strange pillar of shining light that hurts your eyes.  Its shape changes 
D:constantly as it cuts through the air towards you.  It is like a beacon, 
D:waking monsters from their slumber.

N:411:Ancient blue dragon
G:D:b
I:120:70d10:20:80:80
W:38:1:0:1500
B:CLAW:HURT:1d8
B:CLAW:HURT:1d8
B:BITE:HURT:2d8
F:FORCE_SLEEP | FORCE_MAXHP | 
F:DROP_1D2 | DROP_4D2 | 
F:SMART | BASH_DOOR | POWERFUL | MOVE_BODY | 
F:EVIL | DRAGON | IM_ELEC | NO_CONF | NO_SLEEP
S:1_IN_9 | 
S:BLIND | CONF | SCARE | 
S:BR_ELEC
D:A huge draconic form.  Lightning crackles along its length.

N:412:Ancient bronze dragon
G:D:U
I:120:73d10:20:100:200
W:38:2:0:1700
B:CLAW:HURT:1d8
B:CLAW:HURT:1d8
B:BITE:HURT:2d10
F:FORCE_SLEEP | FORCE_MAXHP | 
F:DROP_3D2 | DROP_4D2 | 
F:SMART | BASH_DOOR | POWERFUL | MOVE_BODY | 
F:DRAGON | NO_CONF | NO_SLEEP
S:1_IN_6 | 
S:BLIND | CONF | SCARE | 
S:BR_CONF
D:A huge draconic form enveloped in a cascade of colour.

N:413:Beholder
G:e:U
I:120:16d100:30:80:10
W:38:4:0:6000
B:GAZE:EXP_20:2d4
B:GAZE:PARALYZE:2d4
B:GAZE:LOSE_INT:2d6
B:GAZE:UN_POWER:2d6
F:FORCE_SLEEP | FORCE_MAXHP | 
F:BASH_DOOR | 
F:EVIL | IM_POIS | NO_CONF | NO_SLEEP
S:1_IN_2 | 
S:BLIND | SLOW | CONF | SCARE | DRAIN_MANA | MIND_BLAST | FORGET | 
S:DARKNESS | BO_ACID | BO_FIRE | BO_COLD
D:A disembodied eye, surrounded by twelve smaller eyes on stalks.

N:414:Emperor wight
G:W:r
I:120:38d10:20:40:10
W:38:2:0:1600
B:HIT:HURT:1d12
B:HIT:HURT:1d12
B:TOUCH:EXP_80
B:TOUCH:EXP_80
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_90 | DROP_4D2 | 
F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR | 
F:EVIL | UNDEAD | IM_COLD | IM_POIS | HURT_LITE | NO_CONF | NO_SLEEP
S:1_IN_6 | 
S:HOLD | SCARE | CAUSE_3 | BO_NETH
D:Your life force is torn from your body as this powerful unearthly being 
D:approaches.

N:415:Planetar
G:A:r
I:120:50d10:30:68:255
W:38:6:0:1800
B:HIT:HURT:4d6
B:HIT:HURT:5d5
B:HIT:HURT:5d5
B:HIT:HURT:4d6
F:FORCE_SLEEP | FORCE_MAXHP | SMART | 
F:ONLY_ITEM | DROP_1D2 | DROP_2D2 | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | POWERFUL | MOVE_BODY | 
F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | 
F:NO_CONF | NO_SLEEP
S:1_IN_11 | 
S:HEAL | HASTE | TELE_AWAY | CONF | BO_MANA | BO_PLAS | 
S:S_MONSTERS | S_ANGEL
D:It is an angel, fast and strong.  You are stunned by its extreme holiness 
D:and try to resist all desires to obey it.

N:416:Biri Ban
G:p:r
I:120:15d100:12:50:50
W:38:3:0:3000
B:HIT:FIRE:4d6
B:HIT:FIRE:4d6
B:HIT:FIRE:4d6
B:HIT:FIRE:4d6
F:UNIQUE | 
F:FORCE_SLEEP | FORCE_MAXHP | RAND_25 | 
F:EMPTY_MIND | 
F:KILL_ITEM | KILL_BODY | BASH_DOOR | POWERFUL | 
F:EVIL | IM_FIRE | 
F:IM_POIS | NO_CONF | NO_SLEEP
S:1_IN_4 | 
S:BO_FIRE | BA_FIRE
D:He is the warrior of fire, who will burn anything that gets in his way.

N:417:Black wraith
G:W:D
I:120:50d10:20:55:10
W:38:2:0:1700
B:HIT:HURT:1d12
B:HIT:HURT:1d12
B:TOUCH:EXP_40
B:TOUCH:EXP_40
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_1D2 | DROP_2D2 | 
F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR | 
F:EVIL | UNDEAD | IM_COLD | IM_POIS | HURT_LITE | NO_CONF | NO_SLEEP
S:1_IN_7 | 
S:BLIND | HOLD | SCARE | CAUSE_3 | BO_NETH
D:A figure that seems made of void, its strangely human shape is cloaked in 
D:shadow.  It reaches out at you.

N:418:Erinyes
G:U:u
I:110:24d10:20:50:80
W:38:2:0:1000
B:HIT:HURT:3d4
B:TOUCH:LOSE_STR:1d5
F:FEMALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_60 | 
F:OPEN_DOOR | BASH_DOOR | POWERFUL | 
F:EVIL | DEMON | 
F:IM_FIRE | IM_POIS | NO_CONF | NO_SLEEP
S:1_IN_7 | 
S:BLIND | CONF | BO_FIRE
D:It is a lesser demon of female form; however, she takes little time to 
D:show her true colours.

N:419:Nether wraith
G:W:G
I:120:48d10:20:55:10
W:39:2:0:1700
B:HIT:HURT:1d12
B:HIT:HURT:1d12
B:TOUCH:EXP_80
B:TOUCH:EXP_80
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_90 | DROP_4D2 | 
F:INVISIBLE | COLD_BLOOD | PASS_WALL | 
F:EVIL | UNDEAD | IM_COLD | IM_POIS | 
F:HURT_LITE | NO_CONF | NO_SLEEP
S:1_IN_6 | 
S:BLIND | SCARE | CAUSE_3 | MIND_BLAST | DARKNESS | BO_NETH
D:A form that hurts the eye, death permeates the air around it.  As it nears 
D:you, a coldness saps your soul.

N:420:Eldrak
G:T:r
I:110:75d10:20:80:50
W:39:3:0:800
B:HIT:HURT:3d4
B:HIT:HURT:3d4
B:HIT:HURT:3d4
F:FORCE_MAXHP | 
F:DROP_60 | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | 
F:EVIL | TROLL | IM_POIS | NO_CONF | NO_SLEEP
D:A massive troll, larger and stronger than many men together.

N:421:Ettin
G:T:b
I:110:15d100:20:100:30
W:39:3:0:1000
B:HIT:HURT:3d6
B:HIT:HURT:3d6
B:HIT:HURT:3d6
F:FORCE_MAXHP | 
F:ONLY_ITEM | DROP_1D2 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | TROLL | IM_POIS | NO_CONF | NO_SLEEP
D:A massive troll of huge strength.  Ettins are stupid but violent.

N:422:Gyrados
G:D:s
I:120:20d100:12:40:50
W:39:3:0:3250
B:HIT:HURT:5d5
B:HIT:HURT:5d5
B:HIT:HURT:5d5
B:HIT:HURT:5d5
F:UNIQUE | 
F:FORCE_SLEEP | FORCE_MAXHP | RAND_25 | 
F:EMPTY_MIND | COLD_BLOOD | 
F:KILL_ITEM | KILL_BODY | BASH_DOOR | POWERFUL | 
F:EVIL | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_4 | 
S:BO_ICEE | BO_WATE | BA_COLD | BA_WATE
D:A towering dragon that gets pissed off very easily.

N:423:Yamata no Orochi
G:d:g
I:120:13d100:20:85:30
W:39:3:0:3000
B:BITE:HURT:2d12
B:BITE:HURT:2d12
B:BITE:HURT:2d12
B:BITE:HURT:2d12
F:UNIQUE | MALE | ATTR_MULTI | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_4D2 | DROP_GOOD | 
F:OPEN_DOOR | BASH_DOOR | POWERFUL | 
F:EVIL | DRAGON | IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | 
F:NO_CONF | NO_SLEEP
S:1_IN_4 | 
S:BR_ACID | BR_FIRE | BR_COLD | BR_ELEC | BR_SOUN | BR_CONF | 
S:BR_SHAR | BR_GRAV | BR_NEXU
D:A large dragon with a 8 heads and scales that look like a cedar  
D:forest.  Each head can manipulate nature and cause disasters.

N:424:Ancient white dragon
G:D:w
I:120:70d10:20:90:80
W:39:1:0:2500
B:CLAW:HURT:1d9
B:CLAW:HURT:1d9
B:BITE:HURT:2d12
F:FORCE_SLEEP | FORCE_MAXHP | 
F:DROP_3D2 | DROP_4D2 | 
F:SMART | BASH_DOOR | POWERFUL | MOVE_BODY | 
F:EVIL | DRAGON | IM_COLD | NO_CONF | NO_SLEEP
S:1_IN_9 | 
S:BLIND | CONF | SCARE | 
S:BR_COLD
D:A huge draconic form.  Frost covers it from head to tail.

N:425:Ancient green dragon
G:D:g
I:120:72d10:20:85:80
W:39:1:0:2400
B:CLAW:HURT:1d8
B:CLAW:HURT:1d8
B:BITE:HURT:2d10
F:FORCE_SLEEP | FORCE_MAXHP | 
F:DROP_3D2 | DROP_4D2 | 
F:SMART | BASH_DOOR | POWERFUL | MOVE_BODY | 
F:EVIL | DRAGON | IM_POIS | NO_CONF | NO_SLEEP
S:1_IN_9 | 
S:BLIND | CONF | SCARE | 
S:BR_POIS
D:A huge draconic form enveloped in clouds of poisonous vapour.

N:426:7-headed hydra
G:M:G
I:120:100d10:20:90:20
W:39:2:0:2000
B:BITE:POISON:3d9
B:BITE:POISON:3d9
B:BITE:POISON:3d9
B:SPIT:BLIND:1d2
F:FORCE_SLEEP | 
F:ONLY_GOLD | DROP_2D2 | DROP_4D2 | 
F:BASH_DOOR | MOVE_BODY | 
F:ANIMAL | IM_POIS
S:1_IN_5 | 
S:SCARE | BA_POIS | 
S:BR_POIS
D:A strange reptilian hybrid with seven heads dripping venom.

N:427:Tatarigami
G:q:D
I:120:15d100:30:85:0
W:39:3:0:2900
B:BITE:EXP_80:2d6
B:BITE:HURT:3d8
B:BUTT:HURT:3d8
B:ENGULF:POISON:6d6
F:FORCE_MAXHP | 
F:ONLY_GOLD | DROP_2D2 | 
F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR | 
F:EVIL | UNDEAD | ANIMAL | IM_COLD | IM_POIS | NO_CONF | NO_SLEEP
D:A forest God that has been overcome by its anger and hatred.  This accursed
D:creature hunts down humans with a horrible vengeance.  You stare in disgust
D:and fear at its glowing red eyes and the ugly black worms wiggling about
D:its body.

N:428:Vampire lord
G:V:b
I:120:16d100:20:70:10
W:39:3:0:1800
B:HIT:HURT:1d6
B:HIT:HURT:1d6
B:BITE:EXP_80:1d6
B:BITE:EXP_80:1d6
F:FORCE_SLEEP | FORCE_MAXHP | 
F:DROP_60 | DROP_4D2 | 
F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR | REGENERATE | 
F:EVIL | UNDEAD | IM_COLD | IM_POIS | HURT_LITE | 
F:NO_CONF | NO_SLEEP
S:1_IN_7 | 
S:BLIND | HOLD | SCARE | CAUSE_3 | CAUSE_4 | DRAIN_MANA | 
S:BRAIN_SMASH | DARKNESS | BO_NETH
D:A foul wind chills your bones as this ghastly figure approaches.

N:429:Ancient black dragon
G:D:s
I:120:72d10:20:90:70
W:39:1:0:2500
B:CLAW:HURT:1d9
B:CLAW:HURT:1d9
B:BITE:HURT:2d10
F:FORCE_SLEEP | FORCE_MAXHP | 
F:DROP_3D2 | DROP_4D2 | 
F:SMART | BASH_DOOR | POWERFUL | MOVE_BODY | 
F:EVIL | DRAGON | IM_ACID | NO_CONF | NO_SLEEP
S:1_IN_9 | 
S:BLIND | CONF | SCARE | 
S:BR_ACID
D:A huge draconic form.  Pools of acid melt the floor around it.

N:430:Disenchanter worm mass
G:w:v
I:100:10d8:7:5:10
W:40:3:0:30
B:CRAWL:UN_BONUS:1d4
F:RAND_50 | 
F:STUPID | WEIRD_MIND | MULTIPLY | BASH_DOOR | 
F:ANIMAL | HURT_LITE | NO_FEAR
D:It is a strange mass of squirming worms.  Magical energy crackles 
D:around its disgusting form.

N:431:Rotting quylthulg
G:Q:u
I:120:16d10:20:1:0
W:40:1:0:1500
F:FORCE_SLEEP | FORCE_MAXHP | NEVER_MOVE | NEVER_BLOW | 
F:INVISIBLE | EMPTY_MIND | 
F:ANIMAL | EVIL | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_2 | 
S:BLINK | TPORT | 
S:S_UNDEAD
D:It is a pulsing flesh mound that reeks of death and putrefaction.

N:432:Spirit troll
G:T:B
I:110:10d100:20:90:5
W:40:3:0:900
B:HIT:HURT:3d6
B:HIT:HURT:3d5
B:HIT:HURT:3d5
F:FORCE_MAXHP | 
F:DROP_90 | 
F:INVISIBLE | PASS_WALL | 
F:EVIL | TROLL | IM_COLD | IM_ELEC | IM_POIS | 
F:NO_CONF | NO_SLEEP
D:A weird troll from the elemental planes.

N:433:Lesser titan
G:P:y
I:120:10d100:30:80:15
W:40:3:0:3500
B:HIT:CONFUSE:6d6
B:HIT:CONFUSE:6d6
B:HIT:CONFUSE:6d6
B:HIT:CONFUSE:6d6
F:FORCE_SLEEP | FORCE_MAXHP | 
F:DROP_2D2 | DROP_4D2 | 
F:SMART | TAKE_ITEM | OPEN_DOOR | BASH_DOOR | 
F:EVIL | GIANT
S:1_IN_3 | 
S:HEAL | TELE_TO | SCARE | 
S:S_MONSTERS
D:It is a humanoid figure thirty feet tall that gives off an aura of power 
D:and hate.

N:434:9-headed hydra
G:M:r
I:120:100d12:20:95:20
W:40:2:0:3000
B:BITE:FIRE:3d6
B:BITE:FIRE:3d6
B:BITE:FIRE:3d6
B:BITE:FIRE:3d6
F:FORCE_SLEEP | 
F:ONLY_GOLD | DROP_2D2 | DROP_4D2 | 
F:OPEN_DOOR | BASH_DOOR | MOVE_BODY | 
F:ANIMAL | IM_FIRE
S:1_IN_4 | 
S:SCARE | BO_FIRE | 
S:BR_FIRE
D:A strange reptilian hybrid with nine smouldering heads.

N:435:Enchantress
G:p:R
I:130:52d10:20:60:10
W:40:4:0:2100
B:HIT:HURT:2d6
B:HIT:HURT:2d6
B:HIT:HURT:2d8
F:FEMALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_2D2 | DROP_GOOD | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | NO_CONF | NO_SLEEP
S:1_IN_2 | 
S:BLIND | 
S:S_DRAGON
D:This elusive female spellcaster has a special affinity for dragons, whom 
D:she rarely fights without.

N:436:Archpriest
G:p:G
I:120:52d10:20:60:10
W:40:2:0:1800
B:HIT:HURT:3d4
B:HIT:HURT:3d4
B:HIT:HURT:3d5
F:MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_90 | DROP_2D2 | 
F:SMART | OPEN_DOOR | BASH_DOOR | 
F:EVIL | NO_CONF | NO_SLEEP
S:1_IN_2 | 
S:HEAL | BLIND | HOLD | CONF | CAUSE_3 | 
S:S_MONSTER | S_UNDEAD
D:An evil priest, dressed all in black.  Deadly spells hit you at an 
D:alarming rate as his black spiked mace rains down blow after blow on your 
D:pitiful frame.

N:437:Sorcerer
G:p:v
I:130:52d10:20:60:10
W:40:2:0:2150
B:HIT:HURT:2d8
B:HIT:HURT:2d8
B:HIT:HURT:2d8
F:MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_90 | DROP_4D2 | 
F:OPEN_DOOR | BASH_DOOR | 
F:EVIL | NO_CONF | NO_SLEEP
S:1_IN_2 | 
S:BLINK | TELE_TO | BLIND | CONF | CAUSE_3 | TRAPS | 
S:BO_ACID | BA_FIRE | BA_COLD | 
S:S_MONSTER | S_UNDEAD | S_DRAGON
D:A human figure in robes, he moves with magically improved speed, and his 
D:hands are ablur with spell casting.

N:438:Xaren
G:X:s
I:120:32d10:20:80:10
W:40:1:0:1200
B:HIT:HURT:3d4
B:HIT:HURT:3d4
B:HIT:HURT:3d4
B:HIT:HURT:3d4
F:FORCE_MAXHP | 
F:EMPTY_MIND | COLD_BLOOD | 
F:KILL_ITEM | PASS_WALL | 
F:IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | 
F:HURT_ROCK | NO_CONF | NO_SLEEP
D:It is a tougher relative of the Xorn.  Its hide glitters with metal ores.

N:439:Giant roc
G:B:u
I:110:80d13:20:70:10
W:40:3:0:1000
B:CRUSH:HURT:8d12
B:CRUSH:HURT:8d12
B:HIT:ELEC:12d12
F:BASH_DOOR | 
F:ANIMAL | IM_ELEC
D:A vast legendary bird, its iron talons rake the most impenetrable of 
D:surfaces and its screech echoes through the many winding dungeon corridors.

N:440:Dark Schneider
G:W:D
I:120:12d100:90:60:10
W:40:3:0:7000
B:HIT:HURT:6d6
B:HIT:HURT:6d6
B:HIT:EXP_80:4d6
B:HIT:EXP_80:4d6
F:UNIQUE | MALE | 
F:FORCE_MAXHP | 
F:ONLY_ITEM | DROP_2D2 | DROP_GOOD | 
F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR | MOVE_BODY | 
F:UNDEAD | IM_COLD | IM_POIS | HURT_LITE | NO_CONF | NO_SLEEP
S:1_IN_2 | 
S:DIVINE_COMEDY |
S:HEAL | BLIND | HOLD | SCARE | CAUSE_4 | BRAIN_SMASH | 
D:An undead, lecherous mage.

N:441:Minotaur
G:H:s
I:130:100d10:13:25:10
W:40:2:0:2100
B:BUTT:HURT:4d6
B:BUTT:HURT:4d6
B:BUTT:HURT:2d6
B:BUTT:HURT:2d6
F:BASH_DOOR | 
F:EVIL
D:It is a cross between a human and a bull.

N:442:Spike, the Cockatiel
G:B:v
I:140:24d100:30:400:0
W:40:1:0:9000
B:WAIL:HURT:1d2
B:WAIL:PARALYZE
B:CLAW:HURT:1d2
B:BITE:HURT:1d3
F:ATTR_MULTI |
F:UNIQUE | MALE | 
F:FORCE_MAXHP | 
F:STUPID | ANIMAL |  
F:EVIL | IM_ACID | IM_FIRE | IM_POIS | IM_ELEC | IM_COLD |
F:NO_CONF | NO_SLEEP | RES_NETH | RES_WATE | RES_PLAS |
F:RES_NEXU | RES_DISE | NO_FEAR |
S:1_IN_2 | 
S:SHRIEK | S_WRAITH | S_UNIQUE |
D:He is a gray parrot with peach-colored feathers on his cheeks, 
D:white feathered wingtips, and yellow feathering around the face 
D:and beak.  He stands 4" tall and has yellow and gray crown feathers 
D:which stand straight up like a spike.  He considers himself human 
D:and rejects female companions.  He makes a squawking sound every 
D:5 seconds, which irritates you to the core.  He has sharp, evil 
D:claws and as you approach, he opens his beak in anticipation 
D:of biting off one of your digits.  He randomly says "Spike! Spike!" 
D:as well as "What a pretty bird!"  He leaves a trail of green and 
D:white guano. 

N:443:Death drake
G:D:G
I:120:10d100:25:100:30
W:40:2:0:3500
B:CLAW:HURT:1d10
B:CLAW:HURT:1d10
B:BITE:EXP_80:1d6
B:BITE:EXP_80:1d6
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_2D2 | DROP_4D2 | 
F:INVISIBLE | TAKE_ITEM | 
F:PASS_WALL | POWERFUL | MOVE_BODY | 
F:EVIL | DRAGON | IM_COLD | NO_CONF | NO_SLEEP
S:1_IN_6 | 
S:SLOW | CONF | SCARE | 
S:BR_NETH
D:It is a dragon-like form wrapped in darkness.  You cannot make out its 
D:true form but you sense its evil.

N:444:Charizard
G:D:r
I:120:10d100:20:100:70
W:40:1:0:2750
B:CLAW:HURT:1d10
B:CLAW:HURT:1d10
B:BITE:HURT:2d14
F:FORCE_SLEEP | FORCE_MAXHP | 
F:DROP_3D2 | DROP_4D2 | 
F:SMART | BASH_DOOR | POWERFUL | MOVE_BODY | 
F:EVIL | DRAGON | IM_FIRE | NO_CONF | NO_SLEEP
S:1_IN_4 | 
S:BLIND | CONF | SCARE | 
S:BR_FIRE
D:Fire type Pokemon.  Breathing intense hot flames, it can melt almost
D:anything.  Its breath inflicts terrible pain on enemies.

N:445:Ancient gold dragon
G:D:y
I:120:15d100:20:100:200
W:40:2:0:4000
B:CLAW:HURT:1d10
B:CLAW:HURT:1d10
B:BITE:HURT:2d14
F:FORCE_SLEEP | FORCE_MAXHP | 
F:DROP_3D2 | DROP_4D2 | 
F:SMART | BASH_DOOR | POWERFUL | MOVE_BODY | 
F:DRAGON | NO_CONF | NO_SLEEP
S:1_IN_6 | 
S:BLIND | CONF | SCARE | 
S:BR_SOUN
D:A huge draconic form wreathed in a nimbus of light.

N:446:Great crystal drake
G:D:v
I:120:15d100:25:100:30
W:40:2:0:3500
B:CLAW:HURT:1d9
B:CLAW:HURT:1d9
B:BITE:HURT:2d12
F:ATTR_MULTI | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_2D2 | DROP_4D2 | 
F:INVISIBLE | OPEN_DOOR | BASH_DOOR | POWERFUL | MOVE_BODY | 
F:EVIL | DRAGON | IM_COLD | NO_CONF | NO_SLEEP
S:1_IN_6 | 
S:SLOW | CONF | SCARE | 
S:BR_SHAR
D:A huge crystalline dragon.  Its claws could cut you to shreds and its 
D:teeth are razor sharp.  Strange colours ripple through it as it moves in 
D:the light.

N:447:Vrock
G:U:s
I:110:40d10:20:50:80
W:40:2:0:1000
B:HIT:HURT:3d4
B:CRUSH:HURT:8d12
B:CRUSH:HURT:8d12
F:FORCE_SLEEP | FORCE_MAXHP | 
F:FRIENDS | 
F:ONLY_ITEM | DROP_60 | 
F:OPEN_DOOR | BASH_DOOR | POWERFUL | 
F:EVIL | DEMON | IM_FIRE | NO_CONF | NO_SLEEP
S:1_IN_8 | 
S:BLIND | CONF
D:It is a demon with a long neck and raking claws.

N:448:Death quasit
G:u:D
I:130:44d10:20:80:0
W:40:3:0:1000
B:BITE:LOSE_DEX:3d6
B:CLAW:HURT:3d3
B:CLAW:HURT:3d3
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_90 | DROP_2D2 | DROP_4D2 | 
F:SMART | INVISIBLE | PASS_WALL | 
F:EVIL | DEMON | IM_FIRE | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_10 | 
S:BLIND | CONF | SCARE | CAUSE_3 | FORGET | 
S:S_DEMON
D:It is a demon of small stature, but its armoured frame moves with 
D:lightning speed and its powers make it a tornado of death and destruction.

N:449:Okiku, the servant maid
G:W:D
I:120:12d100:90:60:10
W:41:3:0:8000
B:HIT:HURT:5d5
B:HIT:HURT:5d5
B:TOUCH:EXP_80
F:UNIQUE | FEMALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_4D2 | DROP_GOOD | 
F:INVISIBLE | COLD_BLOOD | PASS_WALL | MOVE_BODY | 
F:EVIL | UNDEAD | IM_COLD | IM_POIS | 
F:HURT_LITE | NO_CONF | NO_SLEEP
S:1_IN_3 | 
S:BLIND | HOLD | SCARE | CAUSE_3 | FORGET | 
S:BO_ACID | BO_FIRE | BO_COLD | BO_NETH | 
S:S_MONSTER
D:A servant in life, Okiku committed suicide rather than to be her
D:master's mistress.

N:450:Dark elven sorceror
G:h:v
I:130:80d10:20:70:10
W:41:2:0:3000
B:HIT:HURT:2d8
B:HIT:HURT:2d8
B:HIT:HURT:2d8
F:MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_90 | DROP_4D2 | 
F:SMART | OPEN_DOOR | BASH_DOOR | 
F:EVIL | HURT_LITE | NO_CONF | NO_SLEEP
S:1_IN_2 | 
S:HEAL | BLINK | TELE_TO | BLIND | CONF | CAUSE_3 | DARKNESS | 
S:BO_ACID | BA_FIRE | BA_COLD | 
S:S_MONSTER | S_UNDEAD | S_DEMON
D:A dark elven figure, dressed in deepest black.  Power seems to crackle 
D:from his slender frame.

N:451:Master lich
G:L:r
I:120:18d100:20:80:50
W:41:2:0:10000
B:TOUCH:EXP_80
B:TOUCH:UN_POWER
B:TOUCH:LOSE_DEX:2d12
B:TOUCH:LOSE_DEX:2d12
F:FORCE_SLEEP | FORCE_MAXHP | SMART | 
F:ONLY_ITEM | DROP_2D2 | DROP_4D2 | 
F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR | 
F:EVIL | UNDEAD | IM_COLD | IM_POIS | NO_CONF | NO_SLEEP
S:1_IN_3 | 
S:BLINK | TELE_TO | BLIND | HOLD | CONF | SCARE | CAUSE_3 | CAUSE_4 | 
S:DRAIN_MANA | BRAIN_SMASH | 
S:S_UNDEAD
D:A skeletal form wrapped in robes.  Powerful magic crackles along its bony 
D:fingers.

N:452:Hezrou
G:U:v
I:110:52d10:20:40:80
W:41:3:0:1500
B:HIT:HURT:3d4
B:HIT:HURT:3d4
F:FORCE_SLEEP | FORCE_MAXHP | FRIENDS | 
F:ONLY_ITEM | DROP_2D2 | 
F:OPEN_DOOR | BASH_DOOR | POWERFUL | 
F:EVIL | DEMON | IM_FIRE | NO_CONF | NO_SLEEP
S:1_IN_9 | 
S:BO_FIRE | 
S:S_DEMON
D:It is a demon of lizard form with cruel-looking jaws.

N:453:Utsutsu Mujuru the Blind
G:U:D
I:120:18d100:90:70:10
W:41:3:0:12000
B:HIT:HURT:5d5
B:HIT:HURT:5d5
B:GAZE:TERRIFY
B:HIT:HURT:5d5
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_4D2 | DROP_GOOD | 
F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR | MOVE_BODY | 
F:EVIL | IM_COLD | IM_POIS | NO_CONF | NO_SLEEP
S:1_IN_2 | 
S:BLIND | 
D:Despite the fact that he is blind, Utsutsu is one of the most 
D:skilled swordsmen ever.  He is also willing to give you a 
D:honorable death.

N:454:Photon
G:p:s
I:130:16d100:20:120:40
W:41:3:0:25000
B:HIT:HURT:20d20
B:HIT:HURT:20d20
B:HIT:UN_BONUS:25d25
B:HIT:UN_BONUS:25d25
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_2D2 | DROP_GOOD | 
F:SMART | OPEN_DOOR | BASH_DOOR | POWERFUL | MOVE_BODY | 
F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | NO_CONF |
F:NO_SLEEP | NO_FEAR | KILL_WALL |
D:Onechan....onaji....Aun....mamoru...yaksoku....

N:455:Solar
G:A:y
I:130:100d35:30:140:255
W:41:6:0:15000
B:GAZE:TERRIFY:4d4
B:GAZE:TERRIFY:4d4
B:HIT:HURT:8d6
B:HIT:HURT:8d6
F:FORCE_SLEEP | 
F:ONLY_ITEM | DROP_3D2 | DROP_4D2 | DROP_GOOD | 
F:SMART | TAKE_ITEM | OPEN_DOOR | BASH_DOOR | POWERFUL | MOVE_BODY | 
F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
S:1_IN_3 | 
S:TELE_TO | BLIND | SCARE | CAUSE_2 | CAUSE_4 | BO_MANA | 
S:S_ANGEL
D:Never a more heavenly being have you seen.  The very holiness of its 
D:presence makes you deeply respect it.  Few creatures can match the powers 
D:of a Solar; fewer still live to tell the tale after attacking one.

N:456:Glabrezu
G:U:o
I:110:60d10:20:40:80
W:41:2:0:1750
B:HIT:HURT:3d4
B:HIT:HURT:3d4
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_90 | 
F:OPEN_DOOR | BASH_DOOR | POWERFUL | 
F:EVIL | DEMON | IM_FIRE | NO_CONF | NO_SLEEP
S:1_IN_9 | 
S:BO_FIRE | 
S:S_DEMON
D:It is demon with arms and pincers, its form a true mockery of life.

N:457:Muraki Kazutaka
G:U:D
I:120:36d100:90:70:10
W:41:3:0:13000
B:HIT:HURT:10d5
B:HIT:HURT:10d5
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_4D2 | DROP_GOOD |
F:INVISIBLE | COLD_BLOOD | OPEN_DOOR | BASH_DOOR | MOVE_BODY | 
F:SMART | EVIL | IM_FIRE | IM_COLD | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR |
S:1_IN_3 | 
S:BLIND | HOLD | SCARE | CAUSE_3 | BO_FIRE | BO_NETH | BA_FIRE | 
S:S_MONSTER | S_DEMON | S_UNDEAD | SLOW | MIND_BLAST | BRAIN_SMASH |
S:CONF | TPORT | S_MONSTERS | S_HI_DEMON | S_HI_UNDEAD | 
D:An extremely insane, demonic serial killer who commits unspeakable acts to 
D:his victims and is the bane of the shinigami.

N:458:Nalfeshnee
G:U:r
I:110:67d10:20:50:80
W:42:2:0:2000
B:HIT:HURT:3d4
B:HIT:HURT:3d4
B:HIT:HURT:3d4
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_1D2 | 
F:OPEN_DOOR | BASH_DOOR | POWERFUL | 
F:EVIL | DEMON | 
F:IM_FIRE | NO_CONF | NO_SLEEP
S:1_IN_9 | 
S:BLIND | CONF | 
S:BR_FIRE | 
S:S_DEMON
D:It is a large demon with the head of a giant boar.  Flames run up and down 
D:its length.

N:459:Undead beholder
G:e:u
I:120:27d100:30:100:10
W:42:4:0:4000
B:GAZE:EXP_40
B:GAZE:PARALYZE
B:GAZE:LOSE_INT:2d6
B:GAZE:UN_POWER:2d6
F:FORCE_SLEEP | FORCE_MAXHP | 
F:COLD_BLOOD | BASH_DOOR | 
F:EVIL | UNDEAD | 
F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | 
F:NO_CONF | NO_SLEEP
S:1_IN_2 | 
S:SLOW | CAUSE_4 | DRAIN_MANA | MIND_BLAST | BRAIN_SMASH | FORGET | 
S:BO_MANA | 
S:S_UNDEAD
D:A disembodied eye, floating in the air.  Black nether storms rage around 
D:its bloodshot pupil and light seems to bend as it sucks its power from the 
D:very air around it.  Your soul chills as it drains your vitality for its 
D:evil enchantments.

N:460:Dread
G:G:o
I:120:25d20:20:30:10
W:42:1:0:600
B:HIT:HURT:6d6
B:HIT:HURT:6d6
B:HIT:LOSE_STR:3d4
F:FORCE_SLEEP | 
F:RAND_25 | FRIENDS | 
F:ONLY_ITEM | DROP_60 | 
F:TAKE_ITEM | INVISIBLE | COLD_BLOOD | PASS_WALL | 
F:EVIL | UNDEAD | IM_COLD | IM_POIS | 
F:NO_CONF | NO_SLEEP
S:1_IN_15 | 
S:BLIND | HOLD | CONF | DRAIN_MANA | BO_NETH
D:It is a form that screams its presence against the eye.  Death incarnate, 
D:its hideous black body seems to struggle against reality as the universe 
D:itself struggles to banish it.

N:461:Mumak
G:q:s
I:110:90d10:20:55:100
W:43:2:0:2100
B:BUTT:HURT:4d6
B:BUTT:HURT:4d6
B:CRUSH:HURT:4d4
F:FRIENDS | 
F:BASH_DOOR | 
F:ANIMAL
D:A massive elephantine form with eyes twisted by madness.

N:462:Ancient multi-hued dragon
G:D:v
I:120:21d100:20:100:70
W:43:1:0:13000
B:CLAW:HURT:1d12
B:CLAW:HURT:1d12
B:BITE:HURT:3d12
F:ATTR_MULTI | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | 
F:SMART | OPEN_DOOR | BASH_DOOR | POWERFUL | MOVE_BODY | 
F:EVIL | DRAGON | IM_ACID | IM_FIRE | IM_COLD | 
F:IM_ELEC | IM_POIS | NO_CONF | NO_SLEEP
S:1_IN_5 | 
S:BLIND | CONF | SCARE | 
S:BR_ACID | BR_FIRE | BR_COLD | BR_ELEC | BR_POIS
D:A huge draconic form.  Many colours ripple down its massive frame.  Few 
D:live to see another.

N:463:Ethereal dragon
G:D:o
I:120:21d100:25:100:15
W:43:2:0:11000
B:CLAW:HURT:1d12
B:CLAW:HURT:1d12
B:BITE:HURT:3d12
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | 
F:INVISIBLE | 
F:PASS_WALL | POWERFUL | MOVE_BODY | 
F:DRAGON | NO_CONF | NO_SLEEP
S:1_IN_5 | 
S:BLIND | CONF | 
S:BR_LITE | BR_DARK | BR_CONF
D:A huge dragon emanating from the elemental plains, the ethereal dragon is 
D:a master of light and dark.  Its form disappears from sight as it cloaks 
D:itself in unearthly shadows.

N:464:Zappa the Posessed
G:W:W
I:120:18d100:90:70:10
W:43:4:0:12000
B:HIT:HURT:5d5
B:HIT:HURT:5d5
B:TOUCH:EXP_40
B:TOUCH:EXP_40
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_4D2 | DROP_GOOD | 
F:INVISIBLE | COLD_BLOOD | OPEN_DOOR | BASH_DOOR | MOVE_BODY | 
F:EVIL | UNDEAD | IM_FIRE | IM_COLD | IM_POIS | 
F:HURT_LITE | NO_CONF | NO_SLEEP
S:1_IN_3 | 
S:BLIND | HOLD | SCARE | CAUSE_3 | BA_ACID | BA_NETH | 
S:S_UNDEAD | S_HOUND
D:Zappa is unfortunately posessed by S-ko, who uses him to "observe" 
D:other humans.  As a result, Zappa does an eerie stair walk everytime 
D:S-ko takes over...

N:465:Marilith
G:U:y
I:120:12d100:20:75:80
W:43:2:0:5000
B:HIT:HURT:3d6
B:HIT:HURT:3d6
B:HIT:HURT:3d6
B:HIT:HURT:3d6
F:FEMALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_1D2 | 
F:OPEN_DOOR | BASH_DOOR | POWERFUL | 
F:EVIL | DEMON | IM_FIRE | NO_CONF | NO_SLEEP
S:1_IN_9 | 
S:BLIND | CAUSE_2 | 
S:S_DEMON
D:She is a demon of female form with many arms, each bearing deadly weapons.

N:466:Nai-no-kami
G:E:u
I:110:18d100:10:97:90
W:43:4:0:6000
B:HIT:HURT:6d6
B:HIT:HURT:6d6
B:HIT:HURT:6d6
B:HIT:SHATTER:10d10
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:EMPTY_MIND | COLD_BLOOD | 
F:KILL_ITEM | KILL_BODY | PASS_WALL | POWERFUL | 
F:EVIL | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | 
F:HURT_ROCK | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_6 | 
S:BO_ACID | BA_ACID | 
D:The Japanese deity of earth and earthquakes.

N:467:Lesser Balrog
G:U:R
I:120:18d100:20:50:80
W:44:3:0:8000
B:HIT:FIRE:2d6
B:HIT:HURT:4d6
B:HIT:FIRE:2d6
B:HIT:HURT:5d5
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_1D2 | DROP_2D2 | 
F:OPEN_DOOR | BASH_DOOR | POWERFUL | MOVE_BODY | 
F:EVIL | DEMON | IM_FIRE | NO_CONF | NO_SLEEP
S:1_IN_4 | 
S:BLIND | CONF | 
S:BR_FIRE | 
S:S_DEMON
D:It is a massive humanoid demon wreathed in flames.

N:468:Shina-To-Be
G:E:B
I:130:27d100:12:50:50
W:44:4:0:8000
B:HIT:HURT:4d6
B:HIT:CONFUSE:1d4
B:HIT:HURT:4d6
B:HIT:CONFUSE:1d4
F:UNIQUE | FEMALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:RAND_25 | 
F:EMPTY_MIND | COLD_BLOOD | 
F:KILL_ITEM | KILL_BODY | BASH_DOOR | POWERFUL | 
F:EVIL | IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_5 | 
S:BO_ELEC | BA_COLD | BA_ELEC
D:The Japanese goddess of wind.

N:469:11-headed hydra
G:M:R
I:120:100d18:20:100:20
W:44:2:0:6000
B:BITE:FIRE:3d12
B:BITE:FIRE:3d12
B:BITE:FIRE:3d12
B:BITE:FIRE:3d12
F:FORCE_SLEEP | 
F:ONLY_GOLD | DROP_2D2 | DROP_4D2 | 
F:OPEN_DOOR | BASH_DOOR | MOVE_BODY | 
F:ANIMAL | IM_FIRE
S:1_IN_4 | 
S:SCARE | BO_FIRE | BO_PLAS | BA_FIRE | 
S:BR_FIRE
D:A strange reptilian hybrid with eleven smouldering heads.

N:470:Patriarch
G:p:G
I:120:80d10:20:60:10
W:44:2:0:5000
B:HIT:HURT:3d4
B:HIT:HURT:3d4
B:HIT:HURT:3d5
F:MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_90 | DROP_4D2 | 
F:SMART | OPEN_DOOR | BASH_DOOR | 
F:EVIL | NO_CONF | NO_SLEEP
S:1_IN_2 | 
S:HEAL | BLIND | HOLD | CAUSE_4 | BRAIN_SMASH | 
S:S_MONSTERS | S_UNDEAD
D:A dark priest of the highest order.  Powerful and evil, beware his many 
D:spells.

N:471:Dreadmaster
G:G:y
I:120:12d100:20:100:10
W:44:2:0:8000
B:HIT:HURT:6d6
B:HIT:HURT:6d6
B:HIT:LOSE_STR:3d4
B:HIT:LOSE_STR:3d4
F:FORCE_SLEEP | FORCE_MAXHP | RAND_25 | 
F:ONLY_ITEM | DROP_1D2 | DROP_4D2 | 
F:SMART | TAKE_ITEM | INVISIBLE | COLD_BLOOD | PASS_WALL | 
F:EVIL | UNDEAD | IM_COLD | IM_POIS | NO_CONF | NO_SLEEP
S:1_IN_9 | 
S:TELE_LEVEL | BLIND | HOLD | CONF | CAUSE_4 | DRAIN_MANA | BO_NETH | 
S:S_UNDEAD
D:It is an unlife of power almost unequaled.  An affront to existence, its 
D:very touch abuses and disrupts the flow of life, and its unearthly limbs, 
D:of purest black, crush rock and flesh with ease.

N:472:Drolem
G:g:g
I:120:30d100:25:130:30
W:44:3:0:12000
B:BITE:HURT:5d8
B:BITE:HURT:5d8
B:CLAW:POISON:3d3
B:CLAW:POISON:3d3
F:FORCE_SLEEP | FORCE_MAXHP | 
F:EMPTY_MIND | COLD_BLOOD | OPEN_DOOR | BASH_DOOR | 
F:DRAGON | IM_FIRE | IM_COLD | 
F:IM_ELEC | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_6 | 
S:BLIND | SLOW | CONF | ARROW_3 | 
S:BR_POIS
D:A constructed dragon, the drolem has massive strength.  Powerful spells 
D:weaved during its creation make it a fearsome adversary.  Its eyes show 
D:little intelligence, but it has been instructed to destroy all it meets.

N:473:Puff, the Magic Dragon
G:D:w
I:120:20d100:20:130:70
W:44:2:0:17000
B:CLAW:HURT:1d10
B:CLAW:HURT:1d10
B:CLAW:HURT:1d10
B:BITE:HURT:3d14
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_3D2 | DROP_4D2 | DROP_GOOD | 
F:BASH_DOOR | POWERFUL | MOVE_BODY | 
F:DRAGON | IM_COLD | NO_CONF | NO_SLEEP
S:1_IN_3 | 
S:CONF | CAUSE_3 | 
S:BR_POIS
D:He frolics in the autumn mist in a land called Honah Lee with his friend, 
D:Little Jackie Paper.  He is also high off of pot most of the time.

N:474:Shindou Saki
G:W:D
I:120:20d100:90:90:10
W:44:3:0:13000
B:HIT:HURT:5d5
B:HIT:HURT:5d5
B:HIT:EXP_40:2d4
B:WAIL:TERRIFY
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_4D2 | DROP_GOOD | 
F:SMART | COLD_BLOOD | OPEN_DOOR | BASH_DOOR | MOVE_BODY | 
F:EVIL | UNDEAD | IM_FIRE | IM_COLD | 
F:IM_POIS | HURT_LITE | NO_CONF | NO_SLEEP
S:1_IN_3 | 
S:BLIND | HOLD | SCARE | CAUSE_3 | BA_FIRE | BA_NETH | 
S:S_MONSTERS | CONF | BLINK |
D:The dead brother of Muraki, he killed Muraki's parents to prevent him from 
D:extracting revenge.

N:475:Hai Riyo, the dragon bird
G:D:r
I:120:20d100:20:100:70
W:45:2:0:19000
B:CLAW:HURT:1d10
B:CLAW:HURT:1d10
B:CLAW:HURT:1d10
B:BITE:HURT:3d14
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_3D2 | DROP_4D2 | DROP_GOOD | 
F:BASH_DOOR | POWERFUL | MOVE_BODY | 
F:DRAGON | IM_FIRE | NO_CONF | NO_SLEEP
S:1_IN_3 | 
S:CONF | CAUSE_3 | 
S:BR_FIRE | BR_ACID |
D:A dragon bird hybrid with a scaly body and clawed feet.  Its wing and tail 
D:feathers are made of pure gold.

N:476:Dracolich
G:D:G
I:120:35d100:25:120:30
W:46:2:0:18000
B:CLAW:HURT:1d12
B:CLAW:HURT:1d12
B:BITE:EXP_80:1d6
B:BITE:EXP_80:1d6
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_4D2 | DROP_GOOD | 
F:COLD_BLOOD | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | POWERFUL | MOVE_BODY | 
F:EVIL | DRAGON | UNDEAD | IM_COLD | IM_POIS | 
F:NO_CONF | NO_SLEEP
S:1_IN_6 | 
S:CONF | SCARE | 
S:BR_COLD | BR_NETH
D:The skeletal form of a once-great dragon, enchanted by magic most 
D:perilous.  Its animated form strikes with speed and drains life from its 
D:prey to satisfy its hunger.

N:477:Greater titan
G:P:o
I:120:38d100:30:125:15
W:46:3:0:13500
B:HIT:CONFUSE:12d12
B:HIT:CONFUSE:12d12
B:HIT:CONFUSE:12d12
B:HIT:CONFUSE:12d12
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_4D2 | DROP_GOOD | 
F:SMART | TAKE_ITEM | OPEN_DOOR | BASH_DOOR | 
F:EVIL | GIANT
S:1_IN_3 | 
S:HEAL | TELE_TO | 
S:S_MONSTERS
D:A forty foot tall humanoid that shakes the ground as it walks.  The power 
D:radiating from its frame shakes your courage, its hatred inspired by your 
D:defiance.

N:478:Dracolisk
G:D:G
I:120:35d100:25:120:30
W:46:2:0:14000
B:BITE:HURT:2d12
B:BITE:HURT:2d12
B:BITE:HURT:5d8
B:GAZE:PARALYZE
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_4D2 | DROP_GOOD | 
F:OPEN_DOOR | BASH_DOOR | 
F:ANIMAL | EVIL | DRAGON | IM_ACID | IM_FIRE | NO_CONF | NO_SLEEP
S:1_IN_6 | 
S:HOLD | SCARE | 
S:BR_FIRE | BR_NETH
D:A mixture of dragon and basilisk, the dracolisk stares at you with deep 
D:piercing eyes, its evil breath burning the ground where it stands.

N:479:Death mold
G:m:D
I:140:100d20:200:60:0
W:47:1:0:1000
B:HIT:UN_BONUS:7d7
B:HIT:UN_BONUS:7d7
B:HIT:UN_BONUS:7d7
B:HIT:EXP_80:5d5
F:FORCE_SLEEP | NEVER_MOVE | 
F:EVIL | IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
D:It is the epitome of all that is evil, in a mold.  Its lifeless form draws 
D:power from sucking the souls of those that approach it, a nimbus of pure 
D:evil surrounds it.  Luckily for you, it can't move.

N:480:Touda, the Shikigami
G:D:r
I:120:22d100:20:100:70
W:47:4:0:20000
B:CLAW:HURT:1d10
B:CLAW:HURT:1d10
B:BITE:HURT:3d14
B:BITE:HURT:4d14
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_3D2 | DROP_4D2 | DROP_GOOD | 
F:BASH_DOOR | POWERFUL | MOVE_BODY | 
F:EVIL | DRAGON | IM_FIRE | NO_CONF | NO_SLEEP
S:1_IN_3 | 
S:CONF | CAUSE_3 | 
S:BR_FIRE
D:A seprant whose flames are powerful enough to destroy even a Shinigami.

N:481:Ii Shenlong
G:D:r
I:120:28d100:20:120:70
W:48:2:0:25000
B:CLAW:HURT:4d12
B:CLAW:HURT:4d12
B:BITE:HURT:6d14
B:BITE:HURT:6d14
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_3D2 | DROP_4D2 | DROP_GOOD | 
F:BASH_DOOR | POWERFUL | MOVE_BODY | 
F:EVIL | DRAGON | IM_FIRE | NO_CONF | NO_SLEEP
S:1_IN_3 | 
S:CONF | CAUSE_3 | 
S:BR_FIRE | BR_POIS | BR_ELEC | BR_COLD | BR_MANA |
S:S_DRAGON
D:The mightiest of the seven dragons, Ii Shenlong came about due to the blatant overuse 
D:of the Dragon Balls by the planet earth.  Even the mightiest warriors of the entire
D: universe fear his wrath.

N:482:Master mystic
G:p:o
I:130:11d100:30:60:5
W:50:3:0:6000
B:KICK:HURT:10d2
B:KICK:HURT:10d2
B:HIT:POISON:20d1
B:HIT:PARALYZE:15d1
F:MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_1D2 | DROP_2D2 | 
F:INVISIBLE | OPEN_DOOR | BASH_DOOR | 
F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | 
F:NO_CONF | NO_SLEEP
S:1_IN_3 | 
S:HEAL | 
S:S_SPIDER
D:A lord of all that is natural, skilled in the mystic ways.  He is a master 
D:of martial arts and is at one with nature, able to summon help from the 
D:wild if need be.

N:483:Benge Barbarois
G:U:o
I:120:30d100:20:100:80
W:50:3:0:30000
B:HIT:FIRE:8d12
B:CRUSH:HURT:8d12
B:TOUCH:UN_POWER
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ESCORT | ESCORTS | 
F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD | 
F:OPEN_DOOR | BASH_DOOR | POWERFUL | MOVE_BODY | 
F:EVIL | DEMON | IM_FIRE | 
F:NO_CONF | NO_SLEEP
S:1_IN_4 | 
S:BLIND | CONF | SCARE | TRAPS |
S:BR_FIRE | BA_NETH |
S:S_UNDEAD | S_DEMON
D:An agile killer whos specialties involve deadly traps and illusions of 
D:shadow and black cloth.

N:484:Nightwing
G:W:D
I:120:60d30:20:120:10
W:50:4:0:6000
B:TOUCH:POISON:3d5
B:TOUCH:POISON:3d5
B:HIT:UN_BONUS:6d8
B:HIT:UN_BONUS:6d8
F:FORCE_SLEEP | 
F:ONLY_ITEM | DROP_2D2 | DROP_GOOD | 
F:SMART | COLD_BLOOD | OPEN_DOOR | BASH_DOOR | 
F:EVIL | UNDEAD | IM_COLD | IM_POIS | HURT_LITE | NO_CONF | NO_SLEEP
S:1_IN_4 | 
S:BLIND | SCARE | CAUSE_4 | BRAIN_SMASH | 
S:BO_MANA | BO_NETH | BA_NETH | 
S:S_UNDEAD
D:Everywhere colours seem paler and the air chiller.  At the centre of the 
D:cold stands a mighty figure.  Its wings envelop you in the chill of death 
D:as the nightwing reaches out to draw you into oblivion.  Your muscles sag 
D:and your mind loses all will to fight as you stand in awe of this mighty 
D:being.

N:485:Nether hound
G:Z:G
I:120:60d10:30:100:0
W:51:2:0:5000
B:BITE:HURT:2d12
B:BITE:HURT:2d12
B:BITE:HURT:2d12
B:CLAW:HURT:3d3
F:FORCE_SLEEP | 
F:FRIENDS | 
F:OPEN_DOOR | BASH_DOOR | 
F:ANIMAL | NO_CONF | NO_SLEEP
S:1_IN_5 | 
S:BR_NETH
D:You feel a soul-tearing chill upon viewing this beast, a ghostly form of 
D:darkness in the shape of a large dog.

N:486:Time hound
G:Z:B
I:130:60d10:30:100:0
W:51:4:0:5000
B:BITE:HURT:2d12
B:BITE:HURT:2d12
B:BITE:HURT:2d12
B:CLAW:HURT:3d3
F:FORCE_SLEEP | 
F:FRIENDS | 
F:OPEN_DOOR | BASH_DOOR | 
F:ANIMAL | NO_CONF | NO_SLEEP
S:1_IN_8 | 
S:BR_TIME
D:You get a terrible sense of deja vu, or is it a premonition?  All at once 
D:you see a little puppy and a toothless old dog.  Perhaps you should give 
D:up and go to bed.

N:487:Plasma hound
G:Z:r
I:120:60d10:30:100:0
W:51:2:0:5000
B:BITE:HURT:2d12
B:BITE:HURT:2d12
B:BITE:HURT:2d12
B:CLAW:HURT:3d3
F:FORCE_SLEEP | 
F:FRIENDS | 
F:OPEN_DOOR | BASH_DOOR | 
F:ANIMAL | IM_FIRE | NO_CONF | NO_SLEEP
S:1_IN_5 | 
S:BR_PLAS
D:The very air warps as pure elemental energy stalks towards you in the 
D:shape of a giant hound.  Your hair stands on end and your palms itch as 
D:you sense trouble.

N:488:Demonic quylthulg
G:Q:r
I:120:48d10:20:1:0
W:51:1:0:3000
F:FORCE_SLEEP | FORCE_MAXHP | NEVER_MOVE | NEVER_BLOW | 
F:INVISIBLE | EMPTY_MIND | 
F:ANIMAL | EVIL | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_2 | 
S:BLINK | TPORT | 
S:S_DEMON
D:A pile of pulsing flesh that glows with an inner hellish fire.  The world 
D:itself seems to cry out against it.

N:489:Great storm wyrm
G:D:b
I:120:30d100:30:150:80
W:51:2:0:17000
B:CLAW:HURT:1d12
B:CLAW:HURT:1d12
B:CLAW:HURT:1d12
B:BITE:HURT:4d14
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_3D2 | DROP_4D2 | DROP_GOOD | 
F:BASH_DOOR | POWERFUL | MOVE_BODY | 
F:EVIL | DRAGON | IM_ELEC | NO_CONF | NO_SLEEP
S:1_IN_6 | 
S:BLIND | CONF | SCARE | 
S:BR_ELEC
D:A vast dragon of power.  Storms and lightning crash around its titanic 
D:form.  Deep blue scales reflect the flashes and highlight the creature's 
D:great muscles.  It regards you with contempt.

N:490:Baphomet the Minotaur Lord
G:H:s
I:130:35d100:30:120:30
W:51:4:0:18000
B:BUTT:HURT:12d13
B:BUTT:HURT:12d13
B:HIT:HURT:10d10
B:HIT:HURT:10d10
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_1D2 | DROP_4D2 | DROP_GOOD | 
F:BASH_DOOR | 
F:EVIL | IM_FIRE | IM_POIS | NO_CONF | NO_SLEEP
S:1_IN_6 | 
S:SLOW | ARROW_4 | BO_MANA | BO_PLAS | BA_ELEC | 
S:BR_WALL
D:A fearsome bull-headed demon, Baphomet swings a mighty axe as he curses 
D:all that defy him.

N:491:Lupin the Third
G:p:B
I:160:25d100:40:90:0
W:52:3:0:36000
B:TOUCH:EAT_GOLD:5d5
B:TOUCH:EAT_ITEM:5d5
B:TOUCH:EAT_FOOD:1d1
B:HIT:BLIND:10d5
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_1D2 | DROP_4D2 | DROP_GREAT | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | MOVE_BODY |
F:SMART | IM_POIS | NO_CONF | NO_SLEEP
S:1_IN_3 | 
S:TRAPS | BLINK
D:The Sherlock Holmes of thieves.  No safeguards or buildings can stop him
D:from stealing whatever he wants. He is a master of disguise, an expert 
D:of stealth, a genius at traps, and moves with blinding speed.  
D:Check your pockets!

N:492:O-Iwa, the disfigured
G:W:D
I:120:25d100:90:100:10
W:52:3:0:40000
B:HIT:HURT:10d10
B:HIT:HURT:5d5
B:TOUCH:EXP_80
B:WAIL:TERRIFY
F:UNIQUE | FEMALE | 
F:FORCE_SLEEP | FORCE_MAXHP | SMART | 
F:ONLY_ITEM | DROP_2D2 | DROP_4D2 | DROP_GOOD | 
F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR | MOVE_BODY | 
F:EVIL | UNDEAD | IM_COLD | IM_POIS | 
F:HURT_LITE | NO_CONF | NO_SLEEP
S:1_IN_3 | 
S:BLIND | HOLD | SCARE | CAUSE_3 | CAUSE_4 | MIND_BLAST | 
S:BO_COLD | BA_COLD | BA_NETH | 
S:S_UNDEAD | S_KIN
D:Upon being disfigured from poison, her husband abandoned her to marry 
D:his neighbor.  Now, she haunts the world.

N:493:Grand master mystic
G:p:o
I:130:22d100:30:80:5
W:53:3:0:15000
B:KICK:HURT:20d2
B:KICK:HURT:10d2
B:HIT:POISON:20d1
B:HIT:PARALYZE:15d1
F:MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_4D2 | 
F:INVISIBLE | OPEN_DOOR | BASH_DOOR | 
F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | NO_CONF | NO_SLEEP
S:1_IN_2 | 
S:HEAL | MIND_BLAST | 
S:S_SPIDER | S_HOUND
D:He is one of the few true masters of the art, being extremely skillful in 
D:all forms of unarmed combat and controlling the world's natural creatures 
D:with disdainful ease.

N:494:Miyamoto Musashi
G:p:D
I:130:35d100:90:100:10
W:53:3:0:50000
B:HIT:HURT:20d10
B:HIT:HURT:10d10
B:HIT:LOSE_STR:5d10
B:HIT:LOSE_STR:5d5
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_3D2 | DROP_4D2 | DROP_GOOD | 
F:SMART | OPEN_DOOR | BASH_DOOR | MOVE_BODY | 
F:IM_ACID | IM_FIRE | IM_COLD | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR |
S:1_IN_2 | 
S:SCARE | BLINK | HASTE | HOLD |
D:The legendary swordsman and most frightening warrior ever.  Rumored 
D:to have destroyed the Yoshioka School of swordsmanship singlehandedly 
D:and winner of countless duels with many other legendary swordsmen.
D:Skilled with two swords, he also uses a bamboo sword to extremely
D:deadly effect.  Those who have dared faced him have not lived to tell 
D:the tale.

N:495:Inuki
G:Z:G
I:150:100d15:30:100:0
W:54:3:0:5000
B:BITE:HURT:2d12
B:BITE:HURT:2d12
B:BITE:HURT:2d12
B:CLAW:HURT:3d3
F:UNIQUE |
F:FORCE_SLEEP | FORCE_MAXHP | 
F:INVISIBLE | PASS_WALL | 
F:ANIMAL | NO_CONF | NO_SLEEP
S:1_IN_5 | 
S:BR_MANA
D:The "spirit dog" of Yuzuriha Nekoi.  Inuki has the ability to turn
D:into whatever it wishes.  For some reason, you refuse to believe 
D:that it is actually there...

N:496:Great ice wyrm
G:D:w
I:120:30d100:30:170:80
W:54:2:0:20000
B:CLAW:HURT:1d12
B:CLAW:HURT:1d12
B:CLAW:HURT:3d12
B:BITE:HURT:4d14
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_3D2 | DROP_4D2 | DROP_GOOD | 
F:BASH_DOOR | POWERFUL | MOVE_BODY | 
F:EVIL | DRAGON | IM_COLD | NO_CONF | NO_SLEEP
S:1_IN_6 | 
S:BLIND | CONF | SCARE | 
S:BR_COLD
D:An immense dragon capable of awesome destruction.  You have never felt 
D:such extreme cold, or witnessed such an icy stare.  Begone quickly or feel 
D:its wrath!

N:497:The Phoenix
G:B:r
I:120:36d100:60:130:0
W:54:3:0:40000
B:BITE:FIRE:12d6
B:BITE:FIRE:12d6
B:HIT:FIRE:9d12
B:HIT:FIRE:9d12
F:UNIQUE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_2D2 | DROP_GOOD | 
F:OPEN_DOOR | BASH_DOOR | 
F:ANIMAL | IM_ACID | IM_FIRE | IM_ELEC | IM_POIS | NO_CONF | NO_SLEEP
S:1_IN_3 | 
S:BO_FIRE | BO_PLAS | BA_FIRE | 
S:BR_FIRE | BR_LITE | BR_PLAS
D:A massive glowing eagle bathed in flames.  The searing heat chars your 
D:skin and melts your armour.

N:498:Nightcrawler
G:W:D
I:120:80d60:20:160:10
W:54:4:0:8000
B:STING:LOSE_CON:8d8
B:STING:LOSE_CON:8d8
B:BITE:ACID:10d10
B:BITE:ACID:10d10
F:FORCE_SLEEP | SMART | 
F:ONLY_ITEM | DROP_1D2 | DROP_2D2 | DROP_GOOD | 
F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR | 
F:EVIL | UNDEAD | IM_FIRE | IM_COLD | IM_POIS | 
F:HURT_LITE | NO_CONF | NO_SLEEP
S:1_IN_4 | 
S:BLIND | SCARE | BRAIN_SMASH | 
S:BO_MANA | BO_NETH | BA_NETH | 
S:BR_NETH | 
S:S_UNDEAD
D:This intensely evil creature bears the form of a gargantuan black worm.  
D:Its gaping maw is a void of blackness, acid drips from its steely hide.  
D:It is like nothing you have ever seen before, and a terrible chill runs 
D:down your spine as you face it.

N:499:Hand druj
G:s:y
I:130:60d10:20:110:10
W:55:4:0:12000
F:FORCE_SLEEP | FORCE_MAXHP | NEVER_MOVE | NEVER_BLOW | 
F:SMART | COLD_BLOOD | 
F:EVIL | UNDEAD | IM_COLD | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_1 | 
S:TELE_AWAY | BLIND | CONF | SCARE | CAUSE_3 | FORGET | DARKNESS
D:A skeletal hand floating in the air, motionless except for its flexing 
D:fingers.

N:500:Eye druj
G:s:r
I:130:10d100:20:90:10
W:55:4:0:24000
B:GAZE:EXP_80
B:GAZE:EXP_80
F:FORCE_SLEEP | FORCE_MAXHP | NEVER_MOVE | 
F:SMART | COLD_BLOOD | 
F:EVIL | UNDEAD | 
F:IM_FIRE | IM_COLD | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_1 | 
S:BO_MANA | BO_NETH | BA_NETH | 
S:S_UNDEAD
D:A bloodshot eyeball floating in the air, you'd be forgiven for assuming it 
D:harmless.

N:501:Skull druj
G:s:o
I:130:14d100:20:120:10
W:55:4:0:25000
B:BITE:EXP_80:4d4
B:BITE:PARALYZE:4d4
B:BITE:LOSE_INT:4d4
B:BITE:LOSE_WIS:4d4
F:FORCE_SLEEP | FORCE_MAXHP | NEVER_MOVE | 
F:SMART | COLD_BLOOD | 
F:EVIL | UNDEAD | 
F:IM_FIRE | IM_COLD | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_1 | 
S:SLOW | CAUSE_4 | MIND_BLAST | BRAIN_SMASH | TRAPS | BO_PLAS | 
S:BO_NETH | BA_WATE | 
S:S_UNDEAD
D:A glowing skull possessed by sorcerous power.  It need not move, but 
D:merely blast you with mighty magic.

N:502:Chaos vortex
G:v:v
I:140:32d20:100:80:0
W:55:1:0:4000
F:ATTR_MULTI | 
F:FORCE_SLEEP | NEVER_BLOW | 
F:RAND_50 | RAND_25 | 
F:EMPTY_MIND | BASH_DOOR | POWERFUL | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_6 | 
S:BR_CHAO
D:Void, nothingness, spinning destructively.

N:503:Aether vortex
G:v:v
I:130:32d20:100:40:0
W:55:2:0:4500
B:ENGULF:ELEC:5d5
B:ENGULF:FIRE:3d3
B:ENGULF:ACID:3d3
B:ENGULF:COLD:3d3
F:ATTR_MULTI | 
F:FORCE_SLEEP | 
F:RAND_50 | RAND_25 | 
F:EMPTY_MIND | BASH_DOOR | POWERFUL | 
F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_6 | 
S:BR_ACID | BR_FIRE | BR_COLD | BR_ELEC | BR_POIS | BR_LITE | 
S:BR_DARK | BR_SOUN | BR_CONF | BR_CHAO | BR_SHAR | BR_NETH | 
S:BR_WALL | BR_INER | BR_TIME | BR_GRAV | BR_PLAS | BR_NEXU
D:An awesome vortex of pure magic, power radiates from its frame.

N:504:Haku, the River Dragon
G:D:w
I:120:45d100:20:140:20
W:55:2:0:20000
B:BITE:POISON:8d6
B:BITE:POISON:8d6
B:BITE:FIRE:12d6
B:BITE:FIRE:12d6
F:UNIQUE | MALE |
F:FORCE_SLEEP | FORCE_MAXHP | SMART | 
F:ONLY_GOLD | DROP_3D2 | DROP_4D2 | 
F:OPEN_DOOR | BASH_DOOR | KILL_BODY | POWERFUL | 
F:DRAGON | IM_FIRE | IM_POIS | 
F:NO_CONF | NO_SLEEP
S:1_IN_3 | 
S:SCARE | HOLD |
S:BR_ACID | BR_COLD | BR_NEXU | 
S:BR_FIRE | BR_POIS | BA_WATE |
D:He is the apprentice of Yubaba, the mighty sorceress.  Long ago, he was 
D:a river who got drained.  Ever since then, he has forgotten his true 
D:identity.

N:505:Maria Wong, the Vampire
G:V:D
I:130:40d100:20:145:10
W:55:4:0:23000
B:BITE:HURT:5d8
B:BITE:EXP_80:6d6
B:HIT:CONFUSE:6d6
B:HIT:CONFUSE:6d6
F:UNIQUE | FEMALE | 
F:FORCE_SLEEP | FORCE_MAXHP | SMART | 
F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD | 
F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR | REGENERATE | 
F:EVIL | UNDEAD | IM_COLD | IM_POIS | HURT_LITE | NO_CONF | NO_SLEEP
S:1_IN_3 | 
S:BLIND | HOLD | SCARE | CAUSE_3 | CAUSE_4 | DRAIN_MANA | 
S:BRAIN_SMASH | BA_NETH | S_KIN
D:A vampire who has been kept alive only because of Muraki.  She needs 
D:the blood of innocent victims to sustain her body.

N:506:Great hell wyrm
G:D:r
I:120:54d100:40:170:40
W:55:2:0:23000
B:CLAW:HURT:1d12
B:CLAW:HURT:1d12
B:CLAW:HURT:3d12
B:BITE:HURT:4d14
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD | 
F:BASH_DOOR | POWERFUL | MOVE_BODY | 
F:EVIL | DRAGON | IM_FIRE | NO_CONF | NO_SLEEP
S:1_IN_6 | 
S:BLIND | CONF | SCARE | 
S:BR_FIRE
D:A vast dragon of immense power.  Fire leaps continuously from its huge 
D:form.  The air around it scalds you.  Its slightest glance burns you, and 
D:you truly realize how insignificant you are.

N:507:Draconic quylthulg
G:Q:g
I:120:72d10:20:1:0
W:55:3:0:5500
F:FORCE_SLEEP | FORCE_MAXHP | NEVER_MOVE | NEVER_BLOW | 
F:INVISIBLE | EMPTY_MIND | 
F:ANIMAL | EVIL | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_2 | 
S:BLINK | TPORT | 
S:S_DRAGON
D:It looks like it was once a dragon corpse, now deeply infected with 
D:magical bacteria that make it pulse in a foul and degrading way.

N:508:Vegeta, the Super Sayajin Prince
G:h:G
I:180:50d100:25:195:10
W:56:2:0:20000
B:PUNCH:PARALYZE:1d12
B:KICK:PARALYZE:1d12
B:PUNCH:SHATTER:1d12
B:KICK:SHATTER:1d12
F:UNIQUE | MALE
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_1D2 | DROP_4D2 | DROP_GOOD | 
F:OPEN_DOOR | BASH_DOOR | POWERFUL | MOVE_BODY |
F:EVIL | IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | NO_CONF | NO_SLEEP | 
F:REGENERATE |
S:1_IN_2 | 
S:BLINK | DIVINE_COMEDY |
S:BO_ELEC | BO_MANA | BA_MANA | CAUSE_3
D:Arrogant and cocky, Vegeta kills all who stand in his way.  A Sayajin prince,
D:Vegeta listens to no one and delights in random destruction.  His mastery
D:of martial arts, speed, and power are rivaled only by few throughout the 
D:entire universe.  Beware his wrath!

N:509:Saichel, Angel of Destruction
G:A:d
I:130:55d100:40:160:10
W:56:3:0:25000
B:HIT:HURT:9d12
B:HIT:HURT:4d6
B:HIT:HURT:10d10
B:HIT:HURT:10d10
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_3D2 | DROP_4D2 | DROP_GOOD | 
F:SMART | TAKE_ITEM | OPEN_DOOR | BASH_DOOR | POWERFUL | MOVE_BODY | 
F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
S:1_IN_2 | 
S:TELE_TO | BLIND | 
S:BO_FIRE | BO_MANA | BA_FIRE | 
S:BR_FIRE | DIVINE_COMEDY |
S:S_ANGEL
D:He has all the apperances of devestation and divine wrath, which is no 
D:surprise.  After all, he is the messenger of destruction.  Towering 
D:over you, you shudder as this creature, several hundreds of feet tall 
D:and blasting everything in his path with his outstretched palm, is comming 
D:for YOU.

N:510:Queen Iselia, Angel of Death
G:A:D
I:170:100d100:40:170:10
W:57:3:0:90000
B:TOUCH:EXP_80
B:HIT:BLIND:10d5
B:HIT:HURT:10d10
B:HIT:HURT:10d10
F:UNIQUE | FEMALE | 
F:FORCE_SLEEP | FORCE_MAXHP | SMART | 
F:ONLY_ITEM | DROP_3D2 | DROP_4D2 | DROP_GOOD | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | POWERFUL | MOVE_BODY | 
F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
S:1_IN_2 | 
S:TELE_TO | BLIND | 
S:BO_MANA | BO_NETH | BA_NETH | 
S:BR_NETH | 
S:S_ANGEL
D:Queen Iselia commands awesome power, her visage holy enough to shrivel your 
D:soul.  You shriek with disbelief as her mastery of death draws you to your 
D:grave.  It is truly beyond all but the mightiest of warriors to stand 
D:against him and live.

N:511:The Jade Dragon
G:D:G
I:120:75d100:20:125:70
W:58:3:0:30000
B:CLAW:HURT:5d12
B:CLAW:HURT:6d12
B:CLAW:HURT:8d12
B:BITE:HURT:10d14
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_3D2 | DROP_4D2 | DROP_GOOD | 
F:OPEN_DOOR | BASH_DOOR | POWERFUL | MOVE_BODY | 
F:EVIL | DRAGON | IM_ACID | IM_FIRE | 
F:NO_CONF | NO_SLEEP
S:1_IN_2 | 
S:BLIND | CONF | SCARE | 
S:BR_ACID | BR_FIRE | 
S:S_DRAGON | S_HI_DRAGON
D:The legendary dragon made out of pure Jade.

N:512:Nightwalker
G:W:D
I:130:50d65:20:175:10
W:59:4:0:15000
B:HIT:UN_BONUS:10d10
B:HIT:UN_BONUS:10d10
B:HIT:UN_BONUS:7d7
B:HIT:UN_BONUS:7d7
F:FORCE_SLEEP | 
F:ONLY_ITEM | DROP_4D2 | DROP_GOOD | 
F:SMART | COLD_BLOOD | OPEN_DOOR | BASH_DOOR | 
F:EVIL | UNDEAD | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | 
F:HURT_LITE | NO_CONF | NO_SLEEP
S:1_IN_4 | 
S:BLIND | SCARE | BRAIN_SMASH | 
S:BO_MANA | BO_NETH | BA_NETH | 
S:S_UNDEAD
D:A huge giant garbed in black, more massive than a titan and stronger than 
D:a dragon.  With terrible blows, it breaks your armour from your back, 
D:leaving you defenseless against its evil wrath.  It can smell your fear, 
D:and you in turn smell the awful stench of death as this ghastly figure 
D:strides towards you menacingly.

N:513:Lady Tokimi
G:A:w
I:130:75d100:40:180:10
W:59:3:0:35000
B:HIT:UN_BONUS:6d8
B:HIT:FIRE:4d6
B:HIT:HURT:10d10
B:HIT:HURT:10d10
F:UNIQUE | FEMALE | 
F:FORCE_SLEEP | FORCE_MAXHP | SMART | 
F:ESCORT | 
F:ONLY_ITEM | DROP_3D2 | DROP_4D2 | DROP_GOOD | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | POWERFUL | MOVE_BODY | 
F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
S:1_IN_2 | 
S:TELE_TO | BLIND | BO_MANA | 
S:S_ANGEL | S_KIN
D:You can't comprehend it.  Her very existence seems impossible, and yet, 
D:there she is, standing right in front of you.

N:514:Rezo, the Red Priest
G:p:v
I:120:50d100:100:100:0
W:60:1:0:35000
B:HIT:UN_BONUS:6d8
B:HIT:UN_BONUS:6d8
B:HIT:HURT:5d5
B:HIT:HURT:5d5
F:UNIQUE | MALE | ATTR_MULTI | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD | 
F:SMART | OPEN_DOOR | BASH_DOOR | 
F:EVIL | IM_FIRE | IM_COLD | 
F:IM_ELEC | IM_POIS | NO_CONF | NO_SLEEP
S:1_IN_2 | 
S:HEAL | HASTE | TPORT | TELE_AWAY | BLIND | CONF | SCARE | 
S:CAUSE_4 | MIND_BLAST | FORGET | TRAPS | 
S:BO_ICEE | BA_ACID | BA_FIRE | BA_COLD | BA_WATE | 
S:S_UNDEAD | S_DEMON | S_DRAGON
D:A powerful priest who was blind since birth due to a curse.  He hates
D:Lina Inverse immensely.

N:515:Dreadlord
G:G:r
I:120:30d100:20:150:10
W:62:2:0:20000
B:HIT:HURT:6d6
B:HIT:HURT:6d6
B:HIT:LOSE_STR:4d6
B:HIT:LOSE_STR:4d6
F:FORCE_SLEEP | FORCE_MAXHP | 
F:RAND_25 | 
F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | 
F:INVISIBLE | COLD_BLOOD | TAKE_ITEM | PASS_WALL | 
F:EVIL | UNDEAD | 
F:IM_COLD | IM_POIS | NO_CONF | NO_SLEEP
S:1_IN_4 | 
S:BLIND | HOLD | CONF | DRAIN_MANA | BA_NETH | 
S:S_UNDEAD
D:It is a massive form of animated death, its colour deeper than black.  It 
D:drinks in light, and space around it is twisted and torn by the weight of 
D:its evil.  It is unlife and it knows nothing but the stealing of souls and 
D:the stench of death.  Flee its hunger!

N:516:Haejin, the Enigma
G:h:v
I:110:300d100:2:50:10
W:20:1:0:50000
B:TOUCH:CONFUSE:1d2
B:WAIL:LOSE_INT:1d4
B:TOUCH:EAT_FOOD:1d6
F:UNIQUE | FEMALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ALWAYS_HIT | RES_NEXU | RES_DISE |
F:ONLY_ITEM | DROP_1D2 | 
F:OPEN_DOOR | RAND_50 | HURT_COLD |
F:EVIL | COLD_BLOOD | WEIRD_MIND |
S:1_IN_3 | 
S:SHRIEK | MIND_BLAST | FORGET |
D:She is the epitome of annoyance.  She wears a pink jacket and a purple 
D:beret.  She cannot be bargained with, cannot be reasoned with, and 
D:absolutely will not stop until she eats all your food or you are 
D:thoroughly confused.  You could try to deal with her, or you could run, 
D:like every one else.

N:517:Chaos beetle
G:K:v
I:130:32d100:35:125:255
W:65:4:0:19000
B:CLAW:HURT:10d10
B:CLAW:HURT:10d10
B:BITE:HURT:10d10
B:BITE:HURT:10d10
F:ATTR_MULTI | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_60 | DROP_90 | 
F:BASH_DOOR | 
F:ANIMAL
S:1_IN_5 | 
S:CAUSE_4 | 
S:BR_CHAO
D:With biting jaws and catching claws, this immense beetle is like
D:death incarnate chasing behind you!

N:518:Chaos hound
G:Z:v
I:120:60d30:30:100:0
W:65:1:0:10000
B:BITE:HURT:2d12
B:BITE:HURT:2d12
B:BITE:HURT:2d12
B:CLAW:HURT:3d3
F:ATTR_MULTI | 
F:FORCE_SLEEP | 
F:FRIENDS | 
F:BASH_DOOR | 
F:ANIMAL | NO_CONF | NO_SLEEP
S:1_IN_5 | 
S:BR_CHAO
D:A constantly changing canine form, this hound rushes towards you as if 
D:expecting mayhem and chaos ahead.  It appears to have an almost kamikaze 
D:relish for combat.  You suspect all may not be as it seems.

N:519:Great Wyrm of Chaos
G:D:v
I:120:45d100:40:170:20
W:67:2:0:29000
B:CLAW:HURT:5d12
B:CLAW:HURT:5d12
B:CLAW:HURT:6d12
B:BITE:HURT:8d14
F:ATTR_MULTI | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD | 
F:BASH_DOOR | POWERFUL | MOVE_BODY | 
F:EVIL | DRAGON | NO_CONF | NO_SLEEP
S:1_IN_3 | 
S:BLIND | CONF | SCARE | 
S:BR_CHAO | BR_DISE | 
S:S_DRAGON
D:A massive dragon of changing form.  As you watch, it appears first fair 
D:and then foul.  Its body is twisted by chaotic forces as it strives to 
D:stay real.  Its very existence distorts the universe around it.

N:520:Great Wyrm of Law
G:D:B
I:120:45d100:40:170:255
W:67:2:0:29000
B:CLAW:HURT:5d12
B:CLAW:HURT:5d12
B:CLAW:HURT:6d12
B:BITE:HURT:8d14
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD | 
F:BASH_DOOR | POWERFUL | MOVE_BODY | 
F:DRAGON | NO_CONF | NO_SLEEP
S:1_IN_3 | 
S:BLIND | CONF | SCARE | 
S:BR_SOUN | BR_SHAR | 
S:S_DRAGON
D:A massive dragon of powerful intellect.  It seeks to dominate the universe 
D:and despises all other life.  It sees all who do not obey it as mere 
D:insects to be crushed underfoot.

N:521:Great Wyrm of Balance
G:D:v
I:120:49d100:40:170:255
W:67:4:0:31000
B:CLAW:HURT:5d12
B:CLAW:HURT:5d12
B:CLAW:HURT:6d12
B:BITE:HURT:8d14
F:ATTR_MULTI | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD | 
F:BASH_DOOR | POWERFUL | MOVE_BODY | 
F:DRAGON | NO_CONF | NO_SLEEP
S:1_IN_3 | 
S:BLIND | CONF | SCARE | 
S:BR_SOUN | BR_CHAO | BR_SHAR | BR_DISE | 
S:S_DRAGON | S_HI_DRAGON
D:A massive dragon, one of the mightiest of dragonkind.  It is thousands of 
D:years old and seeks to maintain the Cosmic Balance.  It sees you as an 
D:upstart troublemaker without the wisdom to control your actions.  It will 
D:destroy you.

N:522:Kaonashi
G:G:r8
I:130:65d100:20:150:10
W:68:2:0:35000
B:HIT:HURT:10d10
B:HIT:HURT:10d10
B:BITE:EAT_FOOD:4d6
B:HIT:LOSE_STR:4d6
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_3D2 | DROP_4D2 | DROP_GOOD | 
F:INVISIBLE | COLD_BLOOD | PASS_WALL | 
F:EVIL | UNDEAD | IM_COLD | 
F:IM_POIS | NO_CONF | NO_SLEEP
S:1_IN_3 | 
S:BLIND | HOLD | CONF | 
S:BA_DARK | BA_NETH | 
S:S_WRAITH | S_HI_UNDEAD | S_KIN
D:A lonely soul that turned into an obssesive compulsive eating machine. 
D:He eats anything and everything that crosses his path, and his mask 
D:hides the fact that he has no face...

N:523:Tiamat, Celestial Dragon of Evil
G:D:v
I:130:100d100:20:125:70
W:70:4:0:45000
B:CLAW:HURT:6d12
B:CLAW:HURT:8d12
B:CLAW:HURT:8d12
B:BITE:HURT:10d14
F:ATTR_MULTI | 
F:UNIQUE | FEMALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ESCORT | 
F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD | DROP_GREAT | 
F:OPEN_DOOR | BASH_DOOR | POWERFUL | MOVE_BODY | 
F:EVIL | DRAGON | 
F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | NO_CONF | NO_SLEEP
S:1_IN_2 | 
S:BLIND | CONF | SCARE | 
S:BR_ACID | BR_FIRE | BR_COLD | BR_ELEC | BR_POIS | 
S:S_HI_DRAGON
D:Usually found guarding the first plane of Hell, Tiamat is a formidable 
D:opponent, her five heads breathing death to all who stand against her.

N:524:Black reaver
G:L:D
I:120:35d100:20:170:50
W:71:3:0:23000
B:HIT:UN_BONUS:6d8
B:HIT:UN_BONUS:6d8
B:HIT:LOSE_STR:4d6
B:HIT:LOSE_STR:4d6
F:FORCE_SLEEP | FORCE_MAXHP | SMART | 
F:ONLY_ITEM | DROP_1D2 | DROP_2D2 | DROP_GOOD | 
F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR | 
F:EVIL | UNDEAD | IM_COLD | IM_POIS | 
F:NO_CONF | NO_SLEEP | KILL_WALL
S:1_IN_3 | 
S:TELE_TO | BLIND | HOLD | CONF | CAUSE_3 | CAUSE_4 | DRAIN_MANA | 
S:BRAIN_SMASH | BA_MANA | BA_NETH | 
S:S_UNDEAD
D:A humanoid form,  black as night, advancing steadily and unstoppably.  
D:Flee!

N:525:Master quylthulg
G:Q:B
I:120:20d100:20:1:0
W:71:3:0:12000
F:FORCE_SLEEP | FORCE_MAXHP | NEVER_MOVE | NEVER_BLOW | 
F:INVISIBLE | EMPTY_MIND | 
F:ANIMAL | EVIL | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_2 | 
S:S_MONSTER | S_MONSTERS | S_UNDEAD | S_DRAGON | S_HI_UNDEAD |
S:S_HI_DRAGON | S_HI_DEMON
D:A pulsating mound of flesh, shining with silver pulses of throbbing light.

N:526:Greater draconic quylthulg
G:Q:G
I:120:15d100:20:1:0
W:71:3:0:10500
F:FORCE_SLEEP | FORCE_MAXHP | NEVER_MOVE | NEVER_BLOW | 
F:INVISIBLE | EMPTY_MIND | 
F:ANIMAL | EVIL | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_2 | 
S:BLINK | TELE_TO | 
S:S_HI_DRAGON
D:A massive mound of scaled flesh, throbbing and pulsating with multi-hued 
D:light.

N:527:Greater rotting quylthulg
G:Q:U
I:120:15d100:20:1:0
W:71:3:0:10500
F:FORCE_SLEEP | FORCE_MAXHP | NEVER_MOVE | NEVER_BLOW | 
F:INVISIBLE | EMPTY_MIND | 
F:ANIMAL | EVIL | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_2 | 
S:BLINK | TELE_TO | 
S:S_HI_UNDEAD
D:A massive pile of rotting flesh.  A disgusting stench fills the air as it 
D:throbs and writhes.

N:528:Lord Bademon
G:L:R
I:130:50d100:20:85:50
W:72:2:0:30000
B:TOUCH:EXP_80
B:TOUCH:UN_POWER
B:TOUCH:LOSE_DEX:2d12
B:TOUCH:LOSE_DEX:2d12
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ESCORT | 
F:ONLY_ITEM | DROP_2D2 | DROP_4D2 | DROP_GOOD | 
F:SMART | COLD_BLOOD | OPEN_DOOR | BASH_DOOR | 
F:EVIL | UNDEAD | IM_COLD | 
F:IM_POIS | NO_CONF | NO_SLEEP
S:1_IN_2 | 
S:BLINK | TELE_TO | BLIND | HOLD | CONF | SCARE | CAUSE_3 | CAUSE_4 | 
S:BRAIN_SMASH | TRAPS | BA_MANA | 
S:BO_MANA | BA_NETH | DIVINE_COMEDY |
S:S_MONSTERS | S_UNDEAD
D:Master of the Nether spirts, and the most powerful of all of Talpa's servants, 
D:you can't help but feel a sense of awe as this immensely powerful and magical 
D:spirit.

N:529:The Eye of Sahaqiel
G:e:v
I:130:65d100:30:80:10
W:73:4:0:16000
B:GAZE:EXP_40:2d6
B:GAZE:PARALYZE:2d6
B:GAZE:UN_POWER:2d6
B:GAZE:LOSE_INT:2d6
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:SMART | BASH_DOOR | 
F:EVIL | IM_POIS | 
F:NO_CONF | NO_SLEEP
S:1_IN_2 | 
S:BLIND | SLOW | CONF | SCARE | DRAIN_MANA | MIND_BLAST | FORGET | 
S:DARKNESS | BA_DARK | BO_ACID | BO_FIRE | BO_COLD | S_KIN
D:A disembodied eye, floating in the air.  His gaze seems to shred your 
D:soul and his spells crush your will.  He is ancient, his history steeped 
D:in forgotten evils, his atrocities numerous and sickening.

N:530:Kumo, the demon spider
G:S:D
I:120:130d100:8:160:80
W:75:1:0:35000
B:BITE:POISON:3d9
B:BITE:POISON:3d9
B:STING:POISON:2d5
B:STING:POISON:2d5
F:UNIQUE | FEMALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_4D2 | DROP_GOOD | 
F:SMART | BASH_DOOR | 
F:ANIMAL | EVIL | IM_POIS | HURT_LITE | NO_CONF | NO_SLEEP
S:1_IN_3 | 
S:HEAL | BLIND | SLOW | CONF | SCARE | DARKNESS | BA_DARK | 
S:BR_POIS | BR_DARK | 
S:S_SPIDER
D:A gigantic Demon spider that lives in the dark abysses of Japan.

N:531:Aether hound
G:Z:v
I:120:60d30:30:100:0
W:75:2:0:10000
B:BITE:HURT:2d12
B:BITE:HURT:2d12
B:BITE:HURT:2d12
B:CLAW:HURT:3d3
F:ATTR_MULTI | 
F:FORCE_SLEEP | 
F:FRIENDS | 
F:BASH_DOOR | 
F:ANIMAL | IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | 
F:NO_CONF | NO_SLEEP
S:1_IN_5 | 
S:BR_ACID | BR_FIRE | BR_COLD | BR_ELEC | BR_POIS | 
S:BR_LITE | BR_DARK | BR_SOUN | BR_CONF | BR_CHAO | BR_SHAR | 
S:BR_NETH | BR_DISE | BR_WALL | BR_INER | BR_TIME | 
S:BR_GRAV | BR_PLAS | BR_NEXU
D:A shifting, swirling form.  It seems to be all colours and sizes and 
D:shapes, though the dominant form is that of a huge dog.  You feel very 
D:uncertain all of a sudden.

N:532:Fuma Monou, Dragon of Earth
G:p:v
I:130:70d100:60:100:10
W:78:3:0:58000
B:HIT:UN_BONUS:6d8
B:HIT:UN_BONUS:6d8
B:TOUCH:UN_POWER
B:TOUCH:UN_POWER
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | SMART | 
F:ONLY_ITEM | DROP_1D2 | DROP_4D2 | DROP_GOOD | 
F:INVISIBLE | OPEN_DOOR | BASH_DOOR | 
F:EVIL | IM_FIRE | IM_COLD | 
F:IM_ELEC | NO_CONF | NO_SLEEP
S:1_IN_2 | 
S:TELE_TO | HOLD | CAUSE_3 | TRAPS | BLINK | TPORT |
S:BO_PLAS | BA_DARK | BA_MANA | BA_FIRE | BA_WATE | BA_NETH |
S:S_DRAGON_SLAVE | DIVINE_COMEDY
D:The 'Kamui' of the Earth Dragons.  Sworn to protect Kamui, he is 
D:unfortunately destined to fight him to the finish instead.  Blinded
D:by the Earth Dragons and by fate, he seeks to destroy the earth so
D:that a new one may be born.

N:533:The Emperor Quylthulg
G:Q:w
I:130:50d100:30:1:0
W:78:3:0:20000
F:UNIQUE | 
F:FORCE_SLEEP | FORCE_MAXHP | NEVER_MOVE | NEVER_BLOW | 
F:ONLY_ITEM | DROP_4D2 | 
F:INVISIBLE | 
F:ANIMAL | EVIL | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_2 | 
S:BRAIN_SMASH | 
S:S_HI_UNDEAD | S_HI_DRAGON | S_HI_DEMON
D:A huge seething mass of flesh with a rudimentary intelligence, the Emperor 
D:Quylthulg changes colours in front of your eyes.  Pulsating first one 
D:colour then the next, it knows only it must bring help to protect itself.

N:534:Tetsuo
G:Q:o
I:130:50d100:30:1:0
W:78:3:0:20000
B:HIT:HURT:4d12
F:UNIQUE | 
F:FORCE_SLEEP | FORCE_MAXHP | NEVER_MOVE | 
F:ONLY_ITEM | DROP_4D2 | 
F:INVISIBLE | 
F:ANIMAL | EVIL | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_1 | 
S:S_MONSTER | S_MONSTERS | S_UNDEAD | S_DEMON | S_DRAGON | S_ANGEL | 
S:S_HYDRA | S_SPIDER | S_ANT | S_HOUND | S_UNIQUE | S_WRAITH | 
S:S_HI_UNDEAD | S_HI_DRAGON | S_HI_DEMON | S_KIN
D:What was once a rowdy teen is now a pulsating mound of flesh and organs.
D:This abomination of science eyes you with hatred and anger, and snickers
D:as it senses your fear.

N:535:Indalecio
G:A:D
I:130:60d100:90:120:10
W:80:3:0:42000
B:HIT:HURT:10d10
B:HIT:HURT:10d10
B:HIT:CONFUSE:5d5
B:HIT:CONFUSE:5d5
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | SMART | 
F:ONLY_ITEM | DROP_3D2 | DROP_4D2 | DROP_GREAT | 
F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR | MOVE_BODY | 
F:EVIL | POWERFUL |
F:IM_POIS | HURT_LITE | NO_CONF | NO_SLEEP
S:1_IN_2 | 
S:DIVINE_COMEDY |
S:HEAL | BLIND | HOLD | SCARE | CAUSE_4 | BRAIN_SMASH | 
S:BO_MANA | BA_NETH | HASTE | SLOW
D:The Chief of the Ten Wise Men.  A fallen Nedian of devastating power.   
D:He is the one responsible for the 'Sorcery Globe' and instigated the
D:downfall of Nede.  Mortals everywhere fear his wrath.

N:536:Xine, the Mountain King
G:B:w
I:140:55d100:40:125:10
W:82:2:0:30000
B:HIT:HURT:12d12
B:HIT:HURT:12d12
B:HIT:HURT:12d12
B:HIT:HURT:12d12
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_4D2 | DROP_GOOD | 
F:INVISIBLE | OPEN_DOOR | BASH_DOOR | 
F:EVIL | DEMON | IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | 
F:IM_POIS | NO_CONF | NO_SLEEP
S:1_IN_3 | 
S:MIND_BLAST | BO_ELEC | BO_MANA | BA_ELEC | S_HI_DEMON
D:One of the 'Evil Ones' of Expel, Xine despises mortals and looks down
D:upon them from his lofty mountain.

N:537:Hell hound
G:C:r
I:120:48d10:25:80:30
W:83:4:0:600
B:BITE:FIRE:3d12
B:BITE:FIRE:3d12
B:BITE:FIRE:3d12
F:FORCE_SLEEP | FORCE_MAXHP | 
F:RAND_25 | FRIENDS | 
F:BASH_DOOR | MOVE_BODY | 
F:ANIMAL | EVIL | IM_FIRE
S:1_IN_5 | 
S:BR_FIRE
D:It is a giant dog that glows with heat.  Flames pour from its nostrils.

N:538:Majin Buu
G:U:w
I:140:75d100:20:120:80
W:84:2:0:45000
B:GAZE:EXP_80
B:GAZE:EXP_80
B:PUNCH:POISON:10d5
B:KICK:POISON:10d5
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD | DROP_GREAT | 
F:SMART | OPEN_DOOR | BASH_DOOR | 
F:EVIL | IM_FIRE | IM_COLD | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_2 | 
S:TELE_TO | SLOW | SCARE | CAUSE_4 | BRAIN_SMASH | 
S:BO_ICEE | BO_MANA | BA_WATE | BA_NETH | 
D:Destroyer of universes, bane of the four Kaioshins, Buu causes random 
D:chaotic terror no matter where he goes.

N:539:The Tarrasque
G:R:v
I:130:85d100:50:185:20
W:84:2:0:35000
B:HIT:HURT:10d10
B:HIT:HURT:10d10
B:TOUCH:UN_POWER
B:TOUCH:UN_POWER
F:UNIQUE |
F:ATTR_MULTI | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_2D2 | DROP_4D2 | DROP_GOOD | 
F:OPEN_DOOR | BASH_DOOR | POWERFUL | MOVE_BODY | 
F:EVIL | IM_FIRE | IM_COLD | NO_CONF | NO_SLEEP
S:1_IN_2 | 
S:BR_FIRE | BR_COLD | BR_DISE
D:The Tarrasque is a massive reptile of legend, rumoured to be unkillable 
D:and immune to magic.  Fear its anger, for its devastation is unmatched!

N:540:Tien-Shin Akuma
G:U:w
I:130:80d100:20:125:80
W:85:2:0:37000
B:PUNCH:FIRE:8d12
B:KICK:FIRE:8d12
B:CRUSH:HURT:8d12
B:TOUCH:UN_POWER
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ESCORT | ESCORTS | 
F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD | 
F:OPEN_DOOR | BASH_DOOR | POWERFUL | MOVE_BODY | 
F:EVIL | DEMON | IM_FIRE | 
F:NO_CONF | NO_SLEEP
S:1_IN_4 | 
S:BLIND | CONF | SCARE | 
S:BR_FIRE | 
S:S_DEMON | S_HI_UNDEAD | S_HI_DEMON
D:A massive form cloaked in flame and darkness, pulsating with death and despair.

N:541:The Shishigami
G:q:u
I:140:100d100:80:90:90
W:87:2:0:80000
B:TOUCH:POISON:10d10
B:TOUCH:POISON:7d7
B:BUTT:POISON:5d5
B:BITE:POISON:3d3
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ESCORT | ESCORTS | 
F:RAND_25 | 
F:ONLY_ITEM | DROP_1D2 | DROP_GOOD | 
F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | MOVE_BODY | 
F:ANIMAL | IM_POIS
S:1_IN_2 | 
S:SCARE | 
S:S_MONSTERS | S_HOUND | S_KIN |
D:You feel that you are at death's door when you see this scary and strange
D:looking deer approach you.  The twisted expression on its face and its
D:weird looking eyes seem to indicate that it could care less about you.  As 
D:this walking death incarnate steps towards you, you shudder as you see all 
D:life around it flourish then decay.

N:542:Talpa, Ruler of the Netherworld
G:L:R
I:130:60d100:100:100:0
W:90:3:0:45000
B:HIT:UN_BONUS:6d8
B:HIT:UN_BONUS:6d8
B:HIT:HURT:5d5
B:HIT:HURT:5d5
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ESCORT | 
F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD | DROP_GREAT | 
F:SMART | COLD_BLOOD | OPEN_DOOR | BASH_DOOR | 
F:EVIL | UNDEAD | 
F:IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | NO_CONF | NO_SLEEP | 
S:1_IN_3 | 
S:TPORT | BLIND | SCARE | CAUSE_4 | BRAIN_SMASH | 
S:BA_MANA | BO_MANA | BA_FIRE | DIVINE_COMEDY |
S:S_MONSTERS | S_DEMON | S_HI_UNDEAD | S_KIN
D:A fearsome aura surrounds this mystical warlord.  Drawing his powers from the 
D:mystical nine armors, he leads the Dynasty in their bid to take over the world.

N:543:Inu Yasha
G:C:D
I:130:75d100:80:110:10
W:92:2:0:40000
B:CLAW:HURT:3d3
B:CLAW:HURT:3d3
B:CLAW:POISON:4d4
B:CLAW:POISON:4d4
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | RAND_25 | 
F:ONLY_ITEM | DROP_1D2 | DROP_GOOD | 
F:SMART | TAKE_ITEM | OPEN_DOOR | BASH_DOOR | MOVE_BODY | 
F:ANIMAL | EVIL | IM_FIRE | IM_POIS | NO_CONF | NO_SLEEP
S:1_IN_4 | 
S:HEAL | SCARE | BRAIN_SMASH | 
S:BR_FIRE | 
S:S_HOUND
D:A dog demon that was once imprisoned onto a tree by an arrow is now free
D:to ravage destruction everwhere.

N:544:Moro, the Wolf God
G:C:r
I:130:100d100:50:160:10
W:94:1:0:40000
B:HIT:HURT:9d12
B:HIT:HURT:9d12
B:HIT:HURT:9d12
B:HIT:HURT:9d12
F:UNIQUE | 
F:ESCORT | ESCORTS |
F:FORCE_SLEEP | FORCE_MAXHP | 
F:ONLY_ITEM | DROP_4D2 | DROP_GOOD | 
F:OPEN_DOOR | BASH_DOOR | MOVE_BODY | 
F:ANIMAL | IM_FIRE | NO_CONF | NO_SLEEP
S:1_IN_3 | 
S:S_HOUND
D:The guardian wolf of Mononoke Hime, Moro hates mortals.

N:545:Death
G:W:D
I:100:100d100:100:140:0
W:26:5:0:83000
B:HIT:LOSE_INT:99d99
B:TOUCH:LOSE_INT:99d99
F:UNIQUE | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | ALWAYS_HIT | 
F:ESCORT | ESCORTS | SMART |
F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD | DROP_GREAT | 
F:OPEN_DOOR | BASH_DOOR | POWERFUL | MOVE_BODY | 
F:EVIL | UNDEAD | RESPAWN | PASS_WALL | INVISIBLE |
F:IM_FIRE | IM_ELEC | NO_CONF | NO_SLEEP
S:1_IN_2 | 
S:HOLD | BLIND | CONF | SCARE | SLOW | CAUSE_4
S:S_SPIDER | S_WRAITH
D:The bane of all creatures since the beginning of time, Death is an evil
D: nihilist and should be avoided at all costs.  Death smiteth with powerful
D: blows and all fear the touch of Death.  He may even be lurking just around
D: the corner...


# Lina Inverse is the basic "Quest" (thus the QUESTOR flag).
# You must kill her to gain access to Morgoth's level.

N:546:Lina Inverse
G:p:v
I:130:105d100:100:160:0
W:99:1:0:50000
B:HIT:EAT_GOLD:10d12
B:HIT:EAT_FOOD:10d12
F:UNIQUE | QUESTOR | FEMALE | 
F:FORCE_SLEEP | FORCE_MAXHP | FORCE_DEPTH | 
F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD | DROP_GREAT | 
F:SMART | OPEN_DOOR | BASH_DOOR | MOVE_BODY | REGENERATE | 
F:IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_2 | 
S:TPORT | TELE_LEVEL | BLIND | CONF | SCARE | CAUSE_4 | HEAL |
S:BRAIN_SMASH | FORGET | 
S:BO_ICEE | BO_MANA | BO_PLAS | DIVINE_COMEDY |
S:BA_MANA | BA_FIRE | BA_WATE | BA_NETH | BA_DARK | 
S:S_DRAGON_SLAVE | S_MONSTERS | S_HI_DEMON | S_HI_UNDEAD | 
D:Lina Inverse is not your typical scantily clad sorceress babe. She's 
D:crass, loudmouthed, opinionated, and doesn't allow anything to get in 
D:her way. She *loves* to eat, and can consume several meals within 
D:seconds. Sorcery is her specialty, and mages everywhere fear her
D:powerful magic and are awed by it.  


# Neo, bane of the lands of Rgra is, the final "Quest" (thus the QUESTOR flag).
# You must kill him to complete the final quest, and win the game.
# Thanks to K2|Grey, for the idea and the description ^_^

N:547:Neo, bane of the lands of Rgra
G:P:D
I:140:200d100:100:150:0
W:100:1:0:60000
B:HIT:SHATTER:20d10
B:HIT:SHATTER:20d10
B:HIT:LOSE_ALL:10d12
B:TOUCH:UN_POWER
F:UNIQUE | QUESTOR | MALE | 
F:FORCE_SLEEP | FORCE_MAXHP | FORCE_DEPTH | 
F:ONLY_ITEM | DROP_1D2 | DROP_2D2 | DROP_3D2 | DROP_4D2 | 
F:DROP_GOOD | DROP_GREAT | DROP_CHOSEN | 
F:SMART | KILL_WALL | MOVE_BODY | 
F:REGENERATE | 
F:EVIL | IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | 
F:NO_CONF | NO_SLEEP | NO_FEAR
S:1_IN_3 | 
S:BRAIN_SMASH | 
S:BA_MANA | BO_MANA | BA_NETH | 
S:S_MONSTERS | S_UNIQUE | S_WRAITH | S_HI_UNDEAD | S_HI_DRAGON |
S:S_HI_DEMON | S_DRAGON_SLAVE
D:Long has he haunted the shadows of Rgra, and many beings sing no longer, 
D:being despondent from the power of his discord, even Lev Zakrevski, 
D:mightiest of the Cabal. Ever after a defeat, he takes another form and grows 
D:again and long was there dissension in the lands of Rgra, when he descended in 
D:a form mightier than any other of the Ainur, and the light of the fire of his 
D:eyes was as a flame that burns with heat and which pierces with deadly cold.  
D:But there was made a Last Alliance against him, of all the remaining folk of 
D:rgra...and for seven months they besieged the tower of Neo, and Lev was slain, 
D:and many others became no more.   But at last the siege was so strait that Neo 
D:himself came forth, and then Rocher stood forth as champion of the lands of Rgra, 
D:and wrestled with Neo, and cast him upon his face, and he was bound with the chain 
D:which had been long prepared for him..and banished forever in the deeps of the land.
